11 lines
212 B
C#
11 lines
212 B
C#
using BrightGlimmer.Domain.Service;
|
|
using MediatR;
|
|
using System.Collections.Generic;
|
|
|
|
namespace BrightGlimmer.Service.Queries
|
|
{
|
|
public class GetStudentsQuery : IRequest<IEnumerable<Student>>
|
|
{
|
|
}
|
|
}
|