12 lines
198 B
C#
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>
|
|
{
|
|
}
|
|
}
|