8 lines
233 B
C#
Raw Normal View History

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