修改site 代码
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-06-07 10:32:43 +08:00
parent 443b94b332
commit 824b165723
3 changed files with 37 additions and 5 deletions
@@ -29,6 +29,8 @@ namespace IRaCIS.Application.Contracts
public string DirectorPhone { get; set; } = string.Empty;
public string ContactName { get; set; } = string.Empty;
public string ContactPhone { get; set; } = string.Empty;
public Guid? TrialSiteId { get; set; }
}
public class SiteSelectionDTO
@@ -44,6 +46,17 @@ namespace IRaCIS.Application.Contracts
public string Country { get; set; } = String.Empty;
}
public class TrialSiteAddView
{
public Guid TrialSiteId { get; set; }
public string TrialCode { get; set; }
public string TrialSiteName { get; set; }
public string TrialSiteAliasName { get; set; } = String.Empty;
}
public class SiteSelectDTO : SiteDTO
{
public string HospitalName { get; set; } = String.Empty;