using System; using System.Collections.Generic; using IRaCIS.Application.ViewModels; namespace IRaCIS.Core.Application.Contracts.Dicom.DTO { public class StudyReviewerDTO { public Guid Id { get; set; } public Guid StudyId { get; set; } public Guid ReviewerId { get; set; } } public class StudyDistributeInfo { public Guid StudyId { get; set; } public int Status { get; set; } //public int ReviewerCount { get; set; } } public class StudyReviewerCommand { public List StudyList { get; set; } = new List(); //public List StudyIdList { get; set; } public Guid ReviewerId { get; set; } //public int WorkloadType { get; set; } public Guid TrialId { get; set; } //public bool IsDoubleReview { get; set; } } public class StudyReviewerEditCommand { public Guid TrialId { get; set; } public Guid StudyId { get; set; } public bool IsDoubleReview { get; set; } public Guid? ReviewerId1 { get; set; } public Guid? ReviewerId2 { get; set; } public Guid? ReviewerIdForAD { get; set; } } public class ReviewerDistributionDTO { public Guid ReviewerId { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public string Code { get; set; } } }