15 lines
		
	
	
		
			548 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			548 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Core.Blueprint.Service.External.Clients.Adapters
 | |
| {
 | |
|     public class MongoSampleAdapter
 | |
|     {
 | |
|         public string Name { get; set; } = null!;
 | |
|         public string? Description { get; set; }
 | |
|         public string _Id { get; set; } = null!;
 | |
|         public string Id { get; init; } = null!;
 | |
|         public DateTime CreatedAt { get; set; }
 | |
|         public string? CreatedBy { get; set; }
 | |
|         public DateTime? UpdatedAt { get; set; }
 | |
|         public string? UpdatedBy { get; set; }
 | |
|         public StatusEnum Status { get; set; }
 | |
|     }
 | |
| } | 
