feat(member): implement member center management module
Some checks failed
Build and Deploy TenantApi + SkuWorker / build-and-deploy (push) Failing after 1m54s
Some checks failed
Build and Deploy TenantApi + SkuWorker / build-and-deploy (push) Failing after 1m54s
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using MediatR;
|
||||
using TakeoutSaaS.Application.App.Members.Dto;
|
||||
|
||||
namespace TakeoutSaaS.Application.App.Members.Queries;
|
||||
|
||||
/// <summary>
|
||||
/// 会员等级详情查询。
|
||||
/// </summary>
|
||||
public sealed class GetMemberTierDetailQuery : IRequest<MemberTierDetailDto>
|
||||
{
|
||||
/// <summary>
|
||||
/// 等级标识(为空时返回新增默认模板)。
|
||||
/// </summary>
|
||||
public long? TierId { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user