Files
FrontOffice.BFF/src/FrontOffice.BFF.Application/UserAddressCQ/Commands/UpdateUserAddress/UpdateUserAddressCommand.cs

19 lines
563 B
C#
Raw Normal View History

namespace FrontOffice.BFF.Application.UserAddressCQ.Commands.UpdateUserAddress;
public record UpdateUserAddressCommand : IRequest<Unit>
{
//شناسه
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; }
}