feat: add mini ordering catalog and order APIs
All checks were successful
Build and Deploy MiniApi / build-and-deploy (push) Successful in 23s
All checks were successful
Build and Deploy MiniApi / build-and-deploy (push) Successful in 23s
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user