16 lines
380 B
C#
16 lines
380 B
C#
namespace line_gestao_api.Models;
|
|
|
|
public class ResumoGbDistribuicao : ITenantEntity
|
|
{
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
|
|
public Guid TenantId { get; set; }
|
|
|
|
public decimal? Gb { get; set; }
|
|
public int? Qtd { get; set; }
|
|
public decimal? Soma { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
public DateTime UpdatedAt { get; set; }
|
|
}
|