Files
bright-glimmer/BrightGlimmer.Service/Commands/CreateStudentCommand.cs
2019-04-24 17:50:37 +00:00

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