2024-01-29 18:36:38 -05:00

8 lines
233 B
C#

namespace comissions.app.api.Models.SellerProfile;
public class SellerProfileModel
{
public List<string> SocialMediaLinks { get; set; }
public string Biography { get; set; }
public bool PrepaymentRequired { get; set; }
}