GetChargingPilesQuery.cs 442 Bytes
using Rcs.Application.MessageBus.Commands;

namespace Rcs.Application.MessageBus.Commands.ChargingPile
{
    /// <summary>
    /// Get charging pile list query.
    /// </summary>
    public class GetChargingPilesQuery : PaginationParameters
    {
        public string? PileCode { get; set; }
        public string? PileName { get; set; }
        public string? IpAddress { get; set; }
        public bool? IsActive { get; set; }
    }
}