13 lines
363 B
C#
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;
|
|
}
|
|
}
|
|
}
|