26 lines
518 B
C#
26 lines
518 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CH.Dal.DbEntity;
|
|
|
|
public partial class EnergyRateUpdate
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public long? RateId { get; set; }
|
|
|
|
public bool SendAlert { get; set; }
|
|
|
|
public DateTime StartedAt { get; set; }
|
|
|
|
public decimal? Rate { get; set; }
|
|
|
|
public DateTime? AppliedAt { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public DateTime? UpdatedAt { get; set; }
|
|
|
|
public virtual EnergyRate? RateNavigation { get; set; }
|
|
}
|