26 lines
519 B
C#
26 lines
519 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? EnergyThreshold { 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; }
|
|
}
|