9 lines
241 B
C#
9 lines
241 B
C#
namespace CH.CQRS.Service.Energy.Options;
|
|
|
|
public class UpdateEnergyRateCommandOptions
|
|
{
|
|
public long RateId { get; set; }
|
|
public DateTime? StartedAt { get; set; }
|
|
public decimal? Rate { get; set; }
|
|
public string? Name { get; set; }
|
|
} |