CostCalculationItem/IRaCIS.Core.Domain/Financial/TrialRevenuesPriceVerificat...

36 lines
1.0 KiB
C#
Raw Blame History

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

using System;
namespace IRaCIS.Core.Domain.Models
{
public class TrialRevenuesPriceVerification : Entity
{
public Guid TrialId { get; set; }
public Guid ReviewerId { get; set; }
public string YearMonth { get; set; }
public bool Training { get; set; } = false;
public bool Downtime { get; set; } = false;
public bool Global { get; set; } = false;
public bool Timepoint { get; set; } = false;
public bool TimepointIn24H { get; set; } = false;
public bool TimepointIn48H { get; set; } = false;
public bool Adjudication { get; set; } = false;
public bool AdjudicationIn24H { get; set; } = false;
public bool AdjudicationIn48H { get; set; } = false;
public bool RefresherTraining { get; set; } = false;
public bool AdditionalCharge1 { get; set; } = false;
public bool AdditionalCharge2 { get; set; } = false;
public bool AdditionalCharge3 { get; set; } = false;
public DateTime WorkLoadDate { get; set; }
}
}