17 lines
		
	
	
		
			397 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			397 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Core.Cerberos.Adapters.Common.Enums;
 | |
| using Lib.Architecture.BuildingBlocks;
 | |
| 
 | |
| namespace Core.Cerberos.Application.UseCases.Modules.Input
 | |
| {
 | |
|     public class ChangeModuleStatusRequest : Notificator, ICommand
 | |
|     {
 | |
|         public string Id { get; set; }
 | |
|         public StatusEnum Status { get; set; }
 | |
| 
 | |
|         public bool Validate()
 | |
|         {
 | |
|             return Id != null;
 | |
|         }
 | |
|     }
 | |
| }
 | 
