10 lines
324 B
C#
10 lines
324 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
using CH.Dal.Abstractions;
|
|
using CH.Enum;
|
|
namespace CH.Dal.DbEntity;
|
|
|
|
public partial class EnergyRateException : IHasId<long>
|
|
{
|
|
[Column(TypeName = "energy_rate_exception_threshold_reset_type")]
|
|
public EnergyRateExceptionThresholdResetType ResetType { get; set; }
|
|
} |