16 lines
		
	
	
		
			377 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			377 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Core.Blueprint.Mongo;
 | |
| using Lib.Architecture.BuildingBlocks;
 | |
| 
 | |
| namespace Core.Thalos.Application.UseCases.Roles.Input
 | |
| {
 | |
|     public class ChangeRoleStatusRequest : Notificator, ICommand
 | |
|     {
 | |
|         public string _Id { get; set; }
 | |
|         public StatusEnum Status { get; set; }
 | |
|         public bool Validate()
 | |
|         {
 | |
|             return _Id != null;
 | |
|         }
 | |
|     }
 | |
| }
 | 
