irc-netcore-api/IRaCIS.Core.Domain/TrialSiteUser/TrialAttachment.cs

22 lines
713 B
C#

using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace IRaCIS.Core.Domain.Models
{
[Table("TrialAttachment")]
public class TrialAttachment : Entity, IAuditUpdate, IAuditAdd
{
public Guid TrialId { get; set; }
public string Type { get; set; } = String.Empty;
public string DocumentName { get; set; } = String.Empty;
public string DocumentPath { get; set; } = String.Empty;
public string UserTypes { get; set; } = String.Empty;
public DateTime CreateTime { get; set; }
public Guid CreateUserId { get; set; }
public DateTime UpdateTime { get; set; }
public Guid UpdateUserId { get; set; }
}
}