8 lines
233 B
C#
Raw Normal View History

2024-01-29 18:36:38 -05:00
namespace comissions.app.api.Models.SellerProfile;
2024-01-27 06:53:56 -05:00
public class SellerProfileModel
{
public List<string> SocialMediaLinks { get; set; }
public string Biography { get; set; }
2024-01-27 20:12:52 -05:00
public bool PrepaymentRequired { get; set; }
2024-01-27 06:53:56 -05:00
}