19 lines
		
	
	
		
			672 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			672 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Core.Blueprint.External.Clients.Blueprint.Requests;
 | |
| 
 | |
| namespace Core.Blueprint.External.Clients.Blueprint.Adapters
 | |
| {
 | |
|     public class UserProjectAdapter
 | |
|     {
 | |
|         public string ProjectCode { get; set; } = null!;
 | |
|         public string ProjectDescription { get; set; } = null!;
 | |
|         public string UserId { get; set; } = null!;
 | |
|         public int Id { get; set; }
 | |
|         public string Guid { get; set; } = 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; }
 | |
|     }
 | |
| }
 | 
