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