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

9 lines
281 B
C#
Raw Normal View History

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