2025-01-08 17:16:27 -05:00
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
2025-01-13 19:19:03 -05:00
|
|
|
using CH.Dal.Abstractions;
|
2025-01-08 17:16:27 -05:00
|
|
|
using CH.Enum;
|
|
|
|
|
|
|
|
namespace CH.Dal.DbEntity;
|
|
|
|
|
2025-01-13 19:19:03 -05:00
|
|
|
public partial class EnergyRate : IHasId<long>
|
2025-01-08 17:16:27 -05:00
|
|
|
{
|
|
|
|
[Column(TypeName = "currency")]
|
|
|
|
public Currency Currency { get; set; }
|
2025-01-13 19:19:03 -05:00
|
|
|
}
|