sledgemapper/Sledgemapper.Api/Commands/GetMapSnapshotCommand.cs
Michele Scandura db41143312
All checks were successful
continuous-integration/drone/push Build is passing
fixed load and overlay flow, missing sync
2021-09-17 11:42:36 +01:00

18 lines
437 B
C#

using MediatR;
using Sledgemapper.Shared.Entities;
using System;
namespace Sledgemapper.Api.Commands
{
public class GetMapSnapshotCommand : IRequest<Session>
{
public Guid MapId { get; private set; }
public Guid CampaignId { get; private set;
}
public GetMapSnapshotCommand(Guid campaignId, Guid mapId)
{
MapId = mapId;
CampaignId = campaignId;
}
}
}