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