Api/Netina.Domain/Dtos/ResponseDtos/MarketerProfileResponseDto.cs

9 lines
280 B
C#

namespace Netina.Domain.Dtos.ResponseDtos;
public class MarketerProfileResponseDto
{
public string DiscountCode { get; set; } = string.Empty;
public DateTime LastSettlementAt { get; set; }
public int OrderCount { get; set; }
public long Balance { get; set; }
}