Files
TakeoutSaaS.C-Side-Mini-Pro…/src/Application/TakeoutSaaS.Application/App/Mini/Contracts/MiniStoreSummaryDto.cs
MSuMshk 227266d183
All checks were successful
Build and Deploy MiniApi / build-and-deploy (push) Successful in 23s
feat: add mini ordering catalog and order APIs
2026-03-10 10:03:32 +08:00

15 lines
500 B
C#

namespace TakeoutSaaS.Application.App.Mini.Contracts;
/// <summary>
/// 门店摘要。
/// </summary>
public sealed class MiniStoreSummaryDto
{
public string Id { get; init; } = string.Empty;
public string Name { get; init; } = string.Empty;
public string Address { get; init; } = string.Empty;
public string BusinessHours { get; init; } = string.Empty;
public IReadOnlyList<string> Supports { get; init; } = [];
public IReadOnlyList<string> TagTexts { get; init; } = [];
}