2025-01-09 16:14:34 -05:00
|
|
|
namespace CH.CQRS.Service.Energy.Options;
|
|
|
|
|
|
|
|
public class UpdateEnergyRateCommandOptions
|
|
|
|
{
|
2025-01-10 15:59:51 -05:00
|
|
|
public long RateId { get; set; }
|
|
|
|
public bool SendAlert { get; set; }
|
|
|
|
public required DateTime StartedAt { get; set; }
|
|
|
|
public DateTime? AppliedAt { get; set; }
|
|
|
|
public decimal? Rate { get; set; }
|
|
|
|
public DateTime? UpdatedAt { get; set; }
|
2025-01-09 16:14:34 -05:00
|
|
|
}
|