This commit is contained in:
Maarten Zeeman
2025-08-21 13:58:58 +02:00
commit bf8c71c504
27 changed files with 809 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
namespace Lutra.Application.Models.Supermarkten
{
public record Supermarkt
{
public required string Name { get; init; }
}
}