Files
bright-glimmer/BrightGlimmer.Service/Commands/CreateStudentCommand.cs

12 lines
198 B
C#

using MediatR;
using System;
using System.Collections.Generic;
using System.Text;
namespace BrightGlimmer.Service.Commands
{
public class CreateStudentCommand : IRequest<bool>
{
}
}