6 lines
142 B
C#
6 lines
142 B
C#
|
namespace CH.CQRS.Query.EnergyRate;
|
||
|
|
||
|
public class EnergyRateQueryResult
|
||
|
{
|
||
|
public required List<Dal.DbEntity.EnergyRate> Data { get; set; }
|
||
|
}
|