21 lines
		
	
	
		
			704 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			704 B
		
	
	
	
		
			C#
		
	
	
using System;
 | 
						|
 | 
						|
namespace IRaCIS.Application.Contracts
 | 
						|
{
 | 
						|
    public class ResearchPublicationDTO
 | 
						|
    {
 | 
						|
        public Guid? Id { get; set; }
 | 
						|
        public Guid DoctorId { get; set; }
 | 
						|
        public string Research { get; set; } = String.Empty;
 | 
						|
        public string Grants { get; set; } = String.Empty;
 | 
						|
        public string Publications { get; set; } = String.Empty;
 | 
						|
        public string AwardsHonors { get; set; } = String.Empty;
 | 
						|
 | 
						|
        public string ResearchCN { get; set; } = String.Empty;
 | 
						|
        public string GrantsCN { get; set; } = String.Empty;
 | 
						|
        public string PublicationsCN { get; set; } = String.Empty;
 | 
						|
        public string AwardsHonorsCN { get; set; } = String.Empty;
 | 
						|
 | 
						|
 | 
						|
    }
 | 
						|
} |