Fixed all relationship and write errors in all entities
This commit is contained in:
@@ -5,5 +5,7 @@ namespace PyroFetes.Models;
|
||||
public class PurchaseOrder
|
||||
{
|
||||
[Key] public int Id { get; set; }
|
||||
[Required] public string? PurchaseConditions { get; set; }
|
||||
[Required, MaxLength(300)] public string? PurchaseConditions { get; set; }
|
||||
|
||||
public List<PurchaseProduct>? PurchaseProducts { get; set; }
|
||||
}
|
Reference in New Issue
Block a user