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")]
|
2025-01-10 15:59:51 -05:00
|
|
|
public EnergyRateExceptionThresholdResetType ResetType { get; set; }
|
2025-01-08 17:16:27 -05:00
|
|
|
}
|