Files
Projet4/PyroFetes/Models/ServiceProvider.cs

13 lines
324 B
C#

using System.ComponentModel.DataAnnotations;
namespace PyroFetes.Models;
public class ServiceProvider
{
[Key] public int Id { get; set; }
[Required] public decimal Price { get; set; }
//Relations
[Required] public int ProviderTypeId { get; set; }
public ProviderType? ProviderType { get; set; }
}