PIbd-23-Nasyrov-A.G.-Flower.../FlowerShopDatabaseImplement/ShopFlower.cs
2024-03-24 21:16:51 +04:00

23 lines
584 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlowerShopDatabaseImplement.Models
{
public class ShopFlower
{
public int Id { get; set; }
[Required]
public int FlowerId { get; set; }
[Required]
public int ShopId { get; set; }
[Required]
public int Count { get; set; }
public virtual Shop Shop { get; set; } = new();
public virtual Flower Flower { get; set; } = new();
}
}