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

14 lines
307 B
C#

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