faturas_4docs/Compliance/Domain/Models/ReactiveEnergyInformation.cs

11 lines
477 B
C#

namespace Compliance.Domain.Models
{
public class ReactiveEnergyInformation
{
public decimal ReferenceRate { get; set; } // Reference rate for reactive energy charges
public decimal MinimumPowerFactor { get; set; } = 0.92m; // ANEEL standard
public bool ApplyPeakOffPeakDifferentiation { get; set; }
public decimal PeakAdjustmentFactor { get; set; } = 1.0m;
public decimal OffPeakAdjustmentFactor { get; set; } = 1.0m;
}
}