27 lines
680 B
C#
27 lines
680 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace BS.Shared.DataContracts
|
|
{
|
|
[DataContract]
|
|
public partial class ServiceAccountingDC : IDataContract
|
|
{
|
|
[DataMember]
|
|
public long? ServiceAccountingOid { get; set; }
|
|
|
|
[DataMember]
|
|
public long? ServiceAccountingVersion { get; set; }
|
|
|
|
[DataMember]
|
|
public decimal? BillableAmount { get; set; }
|
|
|
|
[DataMember]
|
|
public AccountingIntervalType AccountingInterval { get; set; }
|
|
|
|
[DataMember]
|
|
public ServiceDescriptionDC ServiceDescription { get; set; }
|
|
|
|
[DataMember]
|
|
public bool IsDefault { get; set; }
|
|
|
|
}
|
|
} |