15 lines
		
	
	
		
			326 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			326 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Lib.Architecture.BuildingBlocks;
 | |
| 
 | |
| namespace Core.Blueprint.Application.UsesCases.Mongo.Input
 | |
| {
 | |
|     public class GetBlueprintRequest : Notificator, ICommand
 | |
|     {
 | |
|         public string _Id { get; set; }
 | |
| 
 | |
|         public bool Validate()
 | |
|         {
 | |
|             return _Id != null && _Id != string.Empty;
 | |
|         }
 | |
|     }
 | |
| }
 | 
