CostCalculationItem/IRaCIS.Core.Application.Con.../Doctor/DTO/ResearchPublicationViewMode...

14 lines
384 B
C#

using System;
namespace IRaCIS.Application.ViewModels
{
public class ResearchPublicationDTO
{
public Guid? Id { get; set; }
public Guid DoctorId { get; set; }
public string Research { get; set; }
public string Grants { get; set; }
public string Publications { get; set; }
public string AwardsHonors { get; set; }
}
}