Files
BeWoPlaner/Shared/DataContracts/ServiceAccountingDC.cs

27 lines
680 B
C#
Raw Normal View History

2016-06-27 01:45:38 +02:00
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; }
}
}