10 lines
264 B
C#
10 lines
264 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace PyroFetes.Models;
|
|
|
|
public class HistoryOfApproval
|
|
{
|
|
[Key] public int Id { get; set; }
|
|
[Required] public string ExpirationDate { get; set; }
|
|
[Required] public string DeliveryDate { get; set; }
|
|
} |