namespace FrontOffice.BFF.Application.UserAddressCQ.Commands.UpdateUserAddress; public record UpdateUserAddressCommand : IRequest { //شناسه public long Id { get; init; } //شناسه کاربر public long UserId { get; init; } //عنوان public string Title { get; init; } //آدرس public string Address { get; init; } //کدپستی public string PostalCode { get; init; } //پیشفرض؟ public bool IsDefault { get; init; } //شناسه شهر public long CityId { get; init; } }