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

9 lines
280 B
C#

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 EnergyRateExceptionTresholdResetType ResetType { get; set; }
}