mirror of
https://github.com/D4M13N-D3V/comissions-app-core-api.git
synced 2025-07-29 18:09:37 +00:00
10 lines
300 B
C#
10 lines
300 B
C#
namespace comissions.app.api.Models.Discovery;
|
|
|
|
public class DiscoverySellerModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public List<string> SocialMediaLinks { get; set; }
|
|
public string Biography { get; set; }
|
|
public bool PrepaymentRequired { get; set; }
|
|
} |