using Application.Abstractions.Messaging;
using SharedKernel.Results;
namespace Application.Features.Api.MyPage.Address.Save;
/// 회원 주소 저장 (신규 또는 수정). ID 가 0/null 이면 신규.
public sealed record Command(
int MemberID,
int? ID,
string RecipientName,
string Phone,
string ZipCode,
string Address1,
string Address2,
bool IsDefault
) : ICommand>;