13 lines
417 B
C#
13 lines
417 B
C#
namespace Compliance.Domain.Models
|
|
{
|
|
public class TariffInformation
|
|
{
|
|
public int DistributorId { get; set; }
|
|
public string? Month { get; set; }
|
|
public string? ConsumerGroup { get; set; }
|
|
public string? Subgroup { get; set; }
|
|
public decimal TUSDValue { get; set; }
|
|
public decimal TEValue { get; set; }
|
|
public string? TariffModality { get; set; }
|
|
}
|
|
} |