Files
PyroFetes-Sujet1/PyroFetes/Models/PurchaseOrder.cs
2026-03-26 17:23:09 +01:00

13 lines
390 B
C#

using System.ComponentModel.DataAnnotations;
namespace PyroFetes.Models;
public class PurchaseOrder
{
[Key] public int Id { get; set; }
[Required, MaxLength(300)] public string? PurchaseConditions { get; set; }
[Required] public int SupplierId { get; set; }
public Supplier? Supplier { get; set; }
public List<PurchaseProduct>? PurchaseProducts { get; set; }
}