29 lines
756 B
C#
29 lines
756 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace BS.Shared.Services
|
|
{
|
|
[DebuggerDisplay("{UnitCount} x {AmountPerUnit} x {RateFactor} = {GrossAmountTotal}")]
|
|
public class BillingData
|
|
{
|
|
public DateTime? BillingPeriodStart { get; set; }
|
|
|
|
public DateTime? BillingPeriodEnd { get; set; }
|
|
|
|
public decimal? AmountPerUnit { get; set; }
|
|
|
|
public decimal? UnitCount { get; set; }
|
|
|
|
public decimal? AmountTotal { get; set; }
|
|
|
|
public decimal? RateFactor { get; set; }
|
|
|
|
public decimal? GrossAmountTotal { get; set; }
|
|
|
|
public AccountingIntervalType? AccountingInterval { get; set; }
|
|
}
|
|
}
|