Files
Projet4/PyroFetes/Models/ProviderType.cs
2025-10-02 17:11:00 +02:00

9 lines
193 B
C#

using System.ComponentModel.DataAnnotations;
namespace PyroFetes.Models;
public class ProviderType
{
[Key] public int Id { get; set; }
[Required] public string Label { get; set; }
}