Fixed some properties on models

This commit is contained in:
Francesco D'Amico
2025-03-18 13:15:08 +01:00
parent 449533cf0b
commit 36e107d48e
4 changed files with 8 additions and 7 deletions
@@ -5,8 +5,8 @@
public class Instruction
{
public Guid Id { get; set; }
public string? Description { get; set; }
public string? Number { get; set; }
public string Description { get; set; }
public string Number { get; set; }
public virtual Recipe Recipe { get; set; } = new();
public virtual ICollection<MediaFile> MediaFiles { get; set; } = new List<MediaFile>();
}