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