Command.cs 438 B

12345678910111213141516
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.MyPage.Address.Save;
  4. /// <summary>회원 주소 저장 (신규 또는 수정). ID 가 0/null 이면 신규.</summary>
  5. public sealed record Command(
  6. int MemberID,
  7. int? ID,
  8. string RecipientName,
  9. string Phone,
  10. string ZipCode,
  11. string Address1,
  12. string Address2,
  13. bool IsDefault
  14. ) : ICommand<Result<int>>;