整理数据库实体备注
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-09-20 18:20:37 +08:00
parent d3e3ed79ba
commit 40c8a51a31
174 changed files with 5006 additions and 6652 deletions
+9 -11
View File
@@ -1,17 +1,15 @@
namespace IRaCIS.Core.Domain.Models
namespace IRaCIS.Core.Domain.Models;
public class ImageShare : Entity
{
public class ImageShare : Entity
{
#region
#region
#endregion
public Guid TrialId { get; set; }
public Guid SubjectId { get; set; }
public Guid StudyId { get; set; }
#endregion
public Guid TrialId { get; set; }
public Guid SubjectId { get; set; }
public Guid StudyId { get; set; }
public DateTime ExpireTime { get; set; }
public DateTime ExpireTime { get; set; }
public string Password { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
}
}