22 lines
472 B
C#
22 lines
472 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CH.Dal.DbEntity;
|
|
|
|
public partial class EnergyProvider
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public string Name { get; set; } = null!;
|
|
|
|
public bool Active { get; set; }
|
|
|
|
public DateTime? DisabledAt { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public DateTime? UpdatedAt { get; set; }
|
|
|
|
public virtual ICollection<EnergyRate> EnergyRates { get; set; } = new List<EnergyRate>();
|
|
}
|