17 lines
442 B
C#
17 lines
442 B
C#
namespace line_gestao_api.Models;
|
|
|
|
public class ResumoLineTotais : ITenantEntity
|
|
{
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
|
|
public Guid TenantId { get; set; }
|
|
|
|
public string? Tipo { get; set; }
|
|
public decimal? ValorTotalLine { get; set; }
|
|
public decimal? LucroTotalLine { get; set; }
|
|
public int? QtdLinhas { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
public DateTime UpdatedAt { get; set; }
|
|
}
|