23 lines
537 B
C#
23 lines
537 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Runtime.Serialization;
|
|
using BS.Shared.DataContracts.Compact;
|
|
|
|
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; }
|
|
|
|
}
|
|
} |