Files
AP-WEB-PF3/PF3/Models/CustomerType.cs

11 lines
259 B
C#

using System.ComponentModel.DataAnnotations;
namespace PF3.Models;
public class CustomerType
{
[Key] public int Id { get; set; }
[Required, MaxLength(100)] public string? Label { get; set; }
public List<Customer>? Customers { get; set; }
}