20 lines
510 B
C#
20 lines
510 B
C#
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 AdminServiceSumResponseDC : IAdminServiceDC
|
|
{
|
|
[DataMember(Name = "sum", Order = 1)]
|
|
public decimal? Sum { get; set; }
|
|
|
|
[DataMember(Name = "details", EmitDefaultValue = false, Order = 2)]
|
|
public IEnumerable<AdminServiceSumResponseDetailDC> Details { get; set; }
|
|
}
|
|
}
|