15 lines
No EOL
330 B
C#
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;
|
|
}
|
|
}
|
|
|
|
} |