basic player management
This commit is contained in:
parent
350a283b5e
commit
bab170552e
12 changed files with 244 additions and 91 deletions
15
Sledgemapper.Api/Commands/GetCampaignsCommand.cs
Normal file
15
Sledgemapper.Api/Commands/GetCampaignsCommand.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
using System.Collections.Generic;
|
||||
using MediatR;
|
||||
|
||||
namespace Sledgemapper.Api.Commands
|
||||
{
|
||||
public class GetCampaignsCommand : IRequest<List<Core.Entities.Campaign>>
|
||||
{
|
||||
public string UserId { get; private set; }
|
||||
public GetCampaignsCommand(string userId)
|
||||
{
|
||||
UserId = userId;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue