27 lines
637 B
C#
27 lines
637 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace BS.Shared.Services
|
|
{
|
|
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; }
|
|
}
|
|
}
|