8 lines
230 B
C#
Raw Normal View History

2024-01-27 06:53:56 -05:00
namespace ArtPlatform.API.Models.SellerProfile;
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
}