Arkadiy Radaev d0874b7c11 res 4 hard
2024-05-18 18:05:46 +04:00

23 lines
574 B
C#

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