forked from sanchezvem/PyroFetes
Project4 Adding entities
This commit is contained in:
10
PyroFetes/Models/HistoryOfApproval.cs
Normal file
10
PyroFetes/Models/HistoryOfApproval.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
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; }
|
||||
}
|
Reference in New Issue
Block a user