mirror of
https://github.com/D4M13N-D3V/comissions-app-core-api.git
synced 2025-07-29 18:09:37 +00:00
14 lines
545 B
C#
14 lines
545 B
C#
namespace comissions.app.database.Entities;
|
|
|
|
public class SellerService
|
|
{
|
|
public int Id { get; set; }
|
|
public int SellerProfileId { get; set; }
|
|
public string Name { get; set; } = null!;
|
|
public string Description { get; set; } = null!;
|
|
public double Price { get; set; }
|
|
public bool Archived { get; set; } = false;
|
|
|
|
public virtual ICollection<SellerProfilePortfolioPiece> PortfolioPieces { get; set; } = new List<SellerProfilePortfolioPiece>();
|
|
public virtual UserSellerProfile SellerProfile { get; set; } = null!;
|
|
} |