17 lines
429 B
C#
17 lines
429 B
C#
namespace line_gestao_api.Models;
|
|
|
|
public class ResumoReservaLine : ITenantEntity
|
|
{
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
|
|
public Guid TenantId { get; set; }
|
|
|
|
public string? Ddd { get; set; }
|
|
public decimal? FranquiaGb { get; set; }
|
|
public int? QtdLinhas { get; set; }
|
|
public decimal? Total { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
public DateTime UpdatedAt { get; set; }
|
|
}
|