using System; using System.Collections.Generic; using System.Linq; using System.Text; using BS.Shared; namespace BeWo.Service.Invoicing { public class ApprovalPeriod { public DateTime PeriodStartDate { get; set; } public DateTime PeriodEndDate { get; set; } public decimal AmountPerUnit { get; set; } public decimal? RateFactor { get; set; } public decimal ApprovedAmountTotal { get; set; } public decimal RecordedMinutes { get; set; } public AccountingIntervalType BillingInterval { get; set; } public decimal ApprovedPerUnit { get; set; } public AccountingIntervalType ApprovalUnit { get; set; } public int Days { get; set; } public decimal Weeks { get; set; } public decimal ApprovedTotal { get; set; } } }