PIbd-21_Anisin_R.S._CarRepa.../CarRepairShop/CarRepairShopDatabaseImplement/Models/ShopRepair.cs
2024-04-27 22:53:33 +04:00

23 lines
476 B
C#

using System.ComponentModel.DataAnnotations;
namespace CarRepairShopDatabaseImplement.Models
{
public class ShopRepair
{
public int Id { get; set; }
[Required]
public int ShopId { get; set; }
[Required]
public int RepairId { get; set; }
[Required]
public int Count { get; set; }
public virtual Repair Repair { get; set; } = new();
public virtual Shop Shop { get; set; } = new();
}
}