29 lines
871 B
C#
29 lines
871 B
C#
using System;
|
|
|
|
namespace IRaCIS.Application.ViewModels
|
|
{
|
|
public class TrialPaymentPriceDTO
|
|
{
|
|
public Guid TrialId { get; set; }
|
|
public string TrialCode { get; set; }
|
|
public string Indication { get; set; }
|
|
public string Cro { get; set; }
|
|
public int Expedited { get; set; }
|
|
public double? TrialAdditional { get; set; }
|
|
public DateTime? CreateTime { get; set; }
|
|
public string SowName { get; set; }
|
|
public string SowPath { get; set; }
|
|
public string SowFullPath => WebAppConfig.RootUrl + SowPath;
|
|
}
|
|
|
|
public class TrialPaymentPriceCommand
|
|
{
|
|
//public Guid Id { get; set; }
|
|
public Guid TrialId { get; set; }
|
|
public double TrialAdditional { get; set; }
|
|
|
|
//public string SowName { get; set; }
|
|
//public string SowPath { get; set; }
|
|
}
|
|
}
|