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

12 lines
253 B
C#

using System.ComponentModel.DataAnnotations.Schema;
using CH.Dal.Abstractions;
using CH.Enum;
namespace CH.Dal.DbEntity;
public partial class EnergyRate : IHasId<long>
{
[Column(TypeName = "currency")]
public Currency Currency { get; set; }
}