Creating all entities for subject 2
This commit is contained in:
9
PyroFetes/Models/PurchaseOrder.cs
Normal file
9
PyroFetes/Models/PurchaseOrder.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace PyroFetes.Models;
|
||||
|
||||
public class PurchaseOrder
|
||||
{
|
||||
[Key] public int Id { get; set; }
|
||||
[Required] public string? PurchaseConditions { get; set; }
|
||||
}
|
Reference in New Issue
Block a user