21 lines
474 B
C#
21 lines
474 B
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.Shared.DataContracts.AdminService
|
|
{
|
|
[DataContract]
|
|
public class AdminServiceSumReqDC : IAdminServiceDC
|
|
{
|
|
[DataMember(Name = "end", IsRequired = true)]
|
|
public string End { get; set; }
|
|
|
|
[DataMember(Name = "start", IsRequired = true)]
|
|
public string Start { get; set; }
|
|
}
|
|
}
|