Files
PyroFetes-Sujet1/PyroFetes/Models/Price.cs
2025-10-02 14:30:54 +02:00

17 lines
431 B
C#

using System.ComponentModel.DataAnnotations;
using API.Class;
using Microsoft.EntityFrameworkCore;
namespace API.Models;
[PrimaryKey(nameof(SupplierId), nameof(ProductId))]
public class Price
{
public decimal Label { get; set; }
public int SupplierId { get; set; }
[Required] public Supplier Supplier { get; set; }
public int ProductId { get; set; }
[Required] public Product Product { get; set; }
}