add map to campaign
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Michele 2021-09-01 23:53:52 +01:00
parent 4c345bd044
commit 4d40add598
13 changed files with 1722 additions and 12 deletions

View file

@ -18,4 +18,17 @@ namespace Sledgemapper.Api.Commands
}
}
public class GetCampaignMapsCommand : IRequest<List<Session>>
{
public double Timestamp { get; private set; }
public string CampaignName { get; private set; }
public string UserId { get; private set; }
public GetCampaignMapsCommand(string campaingName, string userId)
{
Timestamp = DateTimeOffset.Now.ToUnixTimeMilliseconds();
CampaignName = campaingName;
UserId = userId;
}
}
}