This commit is contained in:
revengel66
2025-04-30 05:08:30 +04:00
parent f383f1caa4
commit 64f4cb173f
138 changed files with 10973 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace BeautySalonDatabaseImplement.Models
{
public class DistributionCosmetic
{
public int Id { get; set; }
public int DistributionId { get; set; }
public int CosmeticId { get; set; }
[Required]
public int Count { get; set; }
public virtual Distribution Distribution { get; set; }
public virtual Cosmetic Cosmetic { get; set; }
}
}