namespace Models { public class RecipeInfo { public string Name { get; init; } public uint CookTimeMins { get; init; } public uint Energy { get; init; } public Uri Image { get; init; } public float AverageNote { get; init; } public RecipeInfo(string name, uint cookTimeMins, Uri image, float averageNote) { Name = name; CookTimeMins = cookTimeMins; Image = image; AverageNote = averageNote; } } }