Files
PyroFetes-Sujet1/PyroFetes/Models/Quotation.cs
T

18 lines
549 B
C#

using System.ComponentModel.DataAnnotations;
namespace PyroFetes.Models;
public class Quotation
{
[Key] public int Id { get; set; }
[Required, MaxLength(200)] public string? Message { get; set; }
[Required, MaxLength(300)] public string? ConditionsSale { get; set; }
[Required] public int CustomerId { get; set; }
public Customer? Customer { get; set; }
[Required] public int SupplierId { get; set; }
public Supplier? Supplier { get; set; }
public List<QuotationProduct>? QuotationProducts { get; set; }
}