groceries/Groceries/Stores/StoreListModel.cs
2023-07-23 20:00:53 +01:00

10 lines
249 B
C#

namespace Groceries.Stores;
public record StoreListModel(string? Search, ListPageModel<StoreListModel.Store> Stores)
{
public record Store(Guid Id, string Retailer, string Name)
{
public int TotalTransactions { get; init; }
}
}