2025-01-09 16:14:34 -05:00
|
|
|
namespace CH.CQRS.Service.Energy.Options;
|
|
|
|
|
|
|
|
public class DisableEnergyProviderCommandOptions
|
|
|
|
{
|
2025-01-10 15:59:51 -05:00
|
|
|
public long ProviderId { get; set; }
|
|
|
|
public DateTime? DisabledAt { get; set; }
|
2025-01-09 16:14:34 -05:00
|
|
|
}
|