GetChargingPileQuery.cs 292 Bytes
using Rcs.Application.MessageBus.Commands;

namespace Rcs.Application.MessageBus.Commands.ChargingPile
{
    /// <summary>
    /// Get charging pile detail query.
    /// </summary>
    public class GetChargingPileQuery : MessageBase
    {
        public Guid PileId { get; set; }
    }
}