Files
BeWoPlaner/Shared/DataContracts/Reports/AccountingReportDC.cs

22 lines
497 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.Serialization;
namespace BS.Shared.DataContracts.Reports
{
[DataContract]
public class AccountingReportDC
{
[DataMember]
public DateTime StartDate { get; set; }
[DataMember]
public DateTime EndDate { get; set; }
[DataMember]
public List<AccountingReportRowDC> AccountingReportRows { get; set; }
}
}