36 lines
700 B
C#
36 lines
700 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IRaCIS.Application.ViewModels
|
|
{
|
|
public class ImageQACommand
|
|
{
|
|
|
|
public Guid TrialId { get; set; }
|
|
public Guid SiteId { get; set; }
|
|
public Guid StudyId { get; set; }
|
|
public Guid? ParentId { get; set; }
|
|
public String CommunicationRecord { get; set; }
|
|
}
|
|
|
|
|
|
|
|
public class ImageQaDTO: ImageQACommand
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public string UserName { get; set; }
|
|
|
|
}
|
|
|
|
|
|
public class StudyQAView
|
|
{
|
|
List<ImageQaDTO> ImageQAList =new List<ImageQaDTO>();
|
|
|
|
List<Guid> DictionayIds=new List<Guid>();
|
|
|
|
//List<string> Qa
|
|
}
|
|
|
|
} |