|
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; }
|
|
} |