16 lines
		
	
	
		
			385 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			385 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Lib.Architecture.BuildingBlocks;
 | |
| 
 | |
| namespace Core.Blueprint.Service.UseCases.GetSampleItems.Input
 | |
| {
 | |
|     public class GetSampleItemsRequest : Notificator, ICommand
 | |
|     {
 | |
|         public Guid Id { get; set; }
 | |
|         public string TestName { get; set; }
 | |
|         public int NumValue { get; set; }
 | |
|         public bool Validate()
 | |
|         {
 | |
|             return true;
 | |
|         }
 | |
|     }
 | |
| }
 | 
