18 lines
		
	
	
		
			411 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			411 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Lib.Architecture.BuildingBlocks;
 | |
| 
 | |
| namespace Core.Blueprint.Service.UseCases.GetOneSampleItem.Input
 | |
| {
 | |
|     public class GetOneSampleItemRequest : Notificator, ICommand
 | |
|     {
 | |
|         public GetOneSampleItemRequest(string id)
 | |
|         {
 | |
|             Id = id;
 | |
|         }
 | |
|         public string Id { get; set; } = string.Empty;
 | |
|         public bool Validate()
 | |
|         {
 | |
|             return true;
 | |
|         }
 | |
|     }
 | |
| }
 | 
