constellation-api/CH.Dal/DbEntity/EnergyRateException.Extension.cs

10 lines
324 B
C#
Raw Normal View History

2025-01-08 17:16:27 -05:00
using System.ComponentModel.DataAnnotations.Schema;
2025-01-13 19:19:03 -05:00
using CH.Dal.Abstractions;
2025-01-08 17:16:27 -05:00
using CH.Enum;
namespace CH.Dal.DbEntity;
2025-01-13 19:19:03 -05:00
public partial class EnergyRateException : IHasId<long>
2025-01-08 17:16:27 -05:00
{
2025-01-13 19:19:03 -05:00
[Column(TypeName = "energy_rate_exception_threshold_reset_type")]
public EnergyRateExceptionThresholdResetType ResetType { get; set; }
2025-01-08 17:16:27 -05:00
}