constellation-api/CH.Dal/DbEntity/EnergyRate.cs

24 lines
553 B
C#

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 DateTime CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
public virtual ICollection<EnergyRateException> EnergyRateExceptions { get; set; } = new List<EnergyRateException>();
public virtual EnergyProvider? Provider { get; set; }
}