14 lines
383 B
C#
14 lines
383 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; }
|
|
}
|
|
} |