Files
MetaCourse/pyrofetes/pyrofetes-backend/PyroFetes/Models/PurchaseOrder.cs
T
2026-05-05 10:53:52 +02:00

11 lines
295 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; }
public List<PurchaseProduct>? PurchaseProducts { get; set; }
}