38 lines
797 B
C#
38 lines
797 B
C#
using IRaCIS.Core.Domain.Share.Reading;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|
{
|
|
public class GetReadModuleDto
|
|
{
|
|
public Guid TrialId { get; set; }
|
|
}
|
|
|
|
public class GetReadModuleOutDto: ReadModule
|
|
{
|
|
public string SubjectCode { get; set; }
|
|
|
|
public string SiteCode { get; set; }
|
|
|
|
public Guid? SiteId { get; set; }
|
|
}
|
|
|
|
|
|
public class GetReadModuleDtoOut
|
|
{
|
|
public string SubjectCode { get; set; }
|
|
|
|
public string SiteCode { get; set; }
|
|
|
|
public Guid? SiteId { get; set; }
|
|
|
|
public Guid? SubjectId { get; set; }
|
|
|
|
public List<GetReadModuleOutDto> Data { get; set; }
|
|
}
|
|
}
|