constellation-api/CH.Dal/DbEntity/EnergyRateUpdate.cs

24 lines
478 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
namespace CH.Dal.DbEntity;
public partial class EnergyRateUpdate
{
public long Id { get; set; }
public long? RateId { get; set; }
2025-01-13 19:19:03 -05:00
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; }
}