24 lines
478 B
C#
24 lines
478 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 string Name { get; set; } = null!;
|
|
|
|
public DateTime StartedAt { get; set; }
|
|
|
|
public decimal? Rate { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public DateTime? UpdatedAt { get; set; }
|
|
|
|
public virtual EnergyRate? RateNavigation { get; set; }
|
|
}
|