sledgemapper/Sledgemapper.Api/Commands/NewSnapshotCommand.cs
Michele 4c345bd044
All checks were successful
continuous-integration/drone/push Build is passing
tentative campaign map management
2021-08-30 23:30:04 +01:00

13 lines
363 B
C#

using Sledgemapper.Shared.Entities;
namespace Sledgemapper.Api.Commands
{
public class NewSnapshotCommand : BaseCommand<bool>
{
public Session Session { get; private set; }
public NewSnapshotCommand(string sessionName, Session session, string userId) : base(sessionName, userId)
{
Session = session;
}
}
}