28 lines
523 B
C#
28 lines
523 B
C#
using IRaCIS.Application.Contracts;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace IRaCIS.Core.Application.Contracts;
|
|
|
|
public class SignDTO
|
|
{
|
|
public string UserName { get; set; } = string.Empty;
|
|
|
|
public string PassWord { get; set; } = string.Empty;
|
|
|
|
public string SignText { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public Guid? TrialId { get; set; }
|
|
|
|
public Guid? SignCodeId { get; set; }
|
|
|
|
|
|
public string SignCode { get; set; } = string.Empty;
|
|
|
|
public Guid? SubjectVisitId { get; set; }
|
|
|
|
}
|
|
|