16 lines
314 B
C#
16 lines
314 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace BS.Shared.DataContracts
|
|
{
|
|
[DataContract]
|
|
public class GroupDurationDC
|
|
{
|
|
[DataMember]
|
|
public decimal SingleDuration { get; set; }
|
|
|
|
[DataMember]
|
|
public decimal TotalDuration { get; set; }
|
|
|
|
}
|
|
} |