Added Beoordeling

This commit is contained in:
moarten
2026-03-21 21:56:29 +01:00
parent c5e1dedf1d
commit 0774281cbc
4 changed files with 31 additions and 7 deletions

View File

@@ -0,0 +1,9 @@
namespace Lutra.Application.Models.Verspakketten;
public class Beoordeling
{
public required int CijferSmaak { get; init; }
public required int CijferBereiden { get; init; }
public required bool Aanbevolen { get; init; }
public string? Tekst { get; init; }
}

View File

@@ -4,8 +4,9 @@ namespace Lutra.Application.Models.Verspakketten
{
public record Verspakket
{
public required string Name { get; init; }
public required string Rating { get; init; }
public required string Naam { get; init; }
public int? PrijsInCenten { get; init; }
public Beoordeling[]? Beoordelingen { get; init; }
public Supermarkt? Supermarkt { get; init; }
}
}