35 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C#
		
	
	
| namespace IRaCIS.Application.Contracts
 | |
| {
 | |
|     public class TrialRevenuesPriceDTO
 | |
|     {
 | |
| 
 | |
|         public Guid TrialId { get; set; }
 | |
|         public decimal Timepoint { get; set; }
 | |
|         public decimal TimepointIn24H { get; set; }
 | |
|         public decimal TimepointIn48H { get; set; }
 | |
|         public decimal Adjudication { get; set; }
 | |
|         public decimal AdjudicationIn24H { get; set; }
 | |
|         public decimal AdjudicationIn48H { get; set; }
 | |
|         public decimal RefresherTraining { get; set; }
 | |
| 
 | |
|         public decimal Global { get; set; }
 | |
|         public decimal Training { get; set; }
 | |
|         public decimal Downtime { get; set; }
 | |
|     }
 | |
| 
 | |
|     public class TrialRevenuesPriceDetialDTO : TrialRevenuesPriceDTO
 | |
|     {
 | |
|         public Guid Id { get; set; }
 | |
|         public string TrialCode { get; set; } = String.Empty;
 | |
|         public string Indication { get; set; } = string.Empty;
 | |
|         public int Expedited { get; set; }
 | |
|         public string ReviewMode { get; set; } = String.Empty;
 | |
|         public string Cro { get; set; } = String.Empty;
 | |
|     }
 | |
|     public class TrialRevenuesPriceQueryDTO : PageInput
 | |
|     {
 | |
|         public string KeyWord { get; set; } = String.Empty;
 | |
|         public Guid? CroId { get; set; }
 | |
|     }
 | |
| }
 |