15 lines
361 B
C#
15 lines
361 B
C#
namespace line_gestao_api.Models;
|
|
|
|
public class ResumoGbDistribuicaoTotal : ITenantEntity
|
|
{
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
|
|
public Guid TenantId { get; set; }
|
|
|
|
public int? TotalLinhas { get; set; }
|
|
public decimal? SomaTotal { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
public DateTime UpdatedAt { get; set; }
|
|
}
|