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