Initial commit
This commit is contained in:
9
Groceries/Stores/StoreListModel.cs
Normal file
9
Groceries/Stores/StoreListModel.cs
Normal file
@ -0,0 +1,9 @@
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user