47 lines
1.0 KiB
C#
47 lines
1.0 KiB
C#
using System;
|
|
|
|
namespace IRaCIS.Application.ViewModels
|
|
{
|
|
public class CalculateNeededDTO
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid DoctorId { get; set; }
|
|
public string YearMonth { get; set; }
|
|
public bool IsLock { get; set; }
|
|
|
|
public int DataFrom { get; set; }
|
|
}
|
|
|
|
public class DoctorPrice
|
|
{
|
|
public decimal? AdjustmentMultiple { get; set; }
|
|
|
|
public Guid? DoctorId { get; set; }
|
|
|
|
public Guid? TrialId { get; set; }
|
|
|
|
public bool? IsNewTrial { get; set; }
|
|
|
|
public decimal? Training { get; set; }
|
|
|
|
public decimal? RefresherTraining { get; set; }
|
|
|
|
public int? Timepoint { get; set; }
|
|
|
|
public int? Timepoint48H { get; set; }
|
|
|
|
public int? Timepoint24H { get; set; }
|
|
|
|
public int? Adjudication { get; set; }
|
|
|
|
public int? Adjudication48H { get; set; }
|
|
|
|
public int? Adjudication24H { get; set; }
|
|
|
|
public int? Global { get; set; }
|
|
|
|
|
|
public decimal? Downtime { get; set; }
|
|
}
|
|
}
|