forked from sanchezvem/PyroFetes
9 lines
193 B
C#
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; }
|
|
} |