14 lines
493 B
C#
14 lines
493 B
C#
namespace Compliance.Domain.Models
|
|
{
|
|
public class ElectricBill
|
|
{
|
|
public required string SmartCode { get; set; }
|
|
public required string Distributor { get; set; }
|
|
public required string Month { get; set; }
|
|
public decimal ConsumptionAmount { get; set; }
|
|
public decimal TUSDAmount { get; set; }
|
|
public decimal TEAmount { get; set; }
|
|
public decimal TotalAmount { get; set; }
|
|
public DateTime ReferenceDate { get; set; }
|
|
}
|
|
} |