Files
PyroFetes-Sujet1/PyroFetes/Models/CustomerType.cs
2025-10-02 17:11:00 +02:00

11 lines
264 B
C#

using System.ComponentModel.DataAnnotations;
namespace PyroFetes.Models;
public class CustomerType
{
[Key] public int Id { get; set; }
[Required] public string? Price { get; set; }
//RELATIONS PTN
public List<Customer>? Customers { get; set; }
}