DeleteChargingPileCommand.cs 295 Bytes
using Rcs.Application.MessageBus.Commands;

namespace Rcs.Application.MessageBus.Commands.ChargingPile
{
    /// <summary>
    /// Delete charging pile command.
    /// </summary>
    public class DeleteChargingPileCommand : MessageBase
    {
        public Guid PileId { get; set; }
    }
}