ISEbd-21_Agliullov.D.A._Con.../ConfectioneryDatabaseImplement/ShopPastry.cs

25 lines
633 B
C#
Raw Normal View History

2023-03-08 21:37:50 +04:00
using ConfectioneryDatabaseImplement.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryDatabaseImplement.Models
{
public class ShopPastry
{
public int Id { get; set; }
[Required]
public int PastryId { get; set; }
[Required]
public int ShopId { get; set; }
[Required]
public int Count { get; set; }
public virtual Shop Shop { get; set; } = new();
public virtual Pastry Pastry { get; set; } = new();
}
}