15 lines
		
	
	
		
			349 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			349 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Lib.Architecture.BuildingBlocks;
 | |
| 
 | |
| namespace Core.Thalos.Application.UseCases.Users.Input
 | |
| {
 | |
|     public class RemoveCompanyFromUserRequest : Notificator, ICommand
 | |
|     {
 | |
|         public string UserId { get; set; }
 | |
|         public string CompanyId { get; set; }
 | |
|         public bool Validate()
 | |
|         {
 | |
|             return true;
 | |
|         }
 | |
|     }
 | |
| }
 | 
