2024-02-19 01:18:07 -05:00

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!;
}