constellation-api/CH.Dal/DbEntity/EnergyProvider.cs

18 lines
387 B
C#
Raw Normal View History

2025-01-08 17:16:27 -05:00
using System;
using System.Collections.Generic;
namespace CH.Dal.DbEntity;
public partial class EnergyProvider
{
public long Id { get; set; }
public string Name { get; set; } = null!;
public DateTime CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
public virtual ICollection<EnergyRate> EnergyRates { get; set; } = new List<EnergyRate>();
}