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