wip being able to soft delete a student
This commit is contained in:
17
BrightGlimmer.Service/Commands/DeleteStudentCommand.cs
Normal file
17
BrightGlimmer.Service/Commands/DeleteStudentCommand.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using MediatR;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace BrightGlimmer.Service.Commands
|
||||
{
|
||||
public class DeleteStudentCommand : IRequest<bool>
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
|
||||
public DeleteStudentCommand(Guid id)
|
||||
{
|
||||
Id = id;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user