26 lines
518 B
C#
26 lines
518 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace CH.Dal.DbEntity;
|
|||
|
|
|||
|
public partial class EnergyRateException
|
|||
|
{
|
|||
|
public long Id { get; set; }
|
|||
|
|
|||
|
public long? RateId { get; set; }
|
|||
|
|
|||
|
public string? Name { get; set; }
|
|||
|
|
|||
|
public decimal? EnergyTreshold { get; set; }
|
|||
|
|
|||
|
public DateTime? StartedAt { get; set; }
|
|||
|
|
|||
|
public DateTime? EndedAt { get; set; }
|
|||
|
|
|||
|
public DateTime CreatedAt { get; set; }
|
|||
|
|
|||
|
public DateTime? UpdatedAt { get; set; }
|
|||
|
|
|||
|
public virtual EnergyRate? Rate { get; set; }
|
|||
|
}
|