sledgemapper/Sledgemapper.Api/Commands/GetCampaignsCommand.cs
2021-02-21 22:59:43 +00:00

15 lines
No EOL
330 B
C#

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;
}
}
}