2024-02-04 01:03:43 -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; }
}