Files
BeWoPlaner/Shared/DataContracts/AdminService/AdminServiceSumReqDC.cs

21 lines
474 B
C#
Raw Normal View History

2025-02-25 14:49:31 +01:00
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
{
2025-02-25 15:56:15 +01:00
[DataMember(Name = "end", IsRequired = true)]
public string End { get; set; }
2025-02-25 14:49:31 +01:00
2025-02-25 15:56:15 +01:00
[DataMember(Name = "start", IsRequired = true)]
public string Start { get; set; }
2025-02-25 14:49:31 +01:00
}
}