using System; using System.Collections.Generic; namespace CH.Dal.DbEntity; public partial class EnergyRate { public long Id { get; set; } public long? ProviderId { get; set; } public string Name { get; set; } = null!; public decimal? Price { get; set; } public bool Active { get; set; } public DateTime? DisabledAt { get; set; } public DateTime CreatedAt { get; set; } public DateTime? UpdatedAt { get; set; } public virtual ICollection EnergyRateExceptions { get; set; } = new List(); public virtual ICollection EnergyRateUpdates { get; set; } = new List(); public virtual EnergyProvider? Provider { get; set; } }