34 lines
708 B
C#
34 lines
708 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using DataClient.Struct;
|
|
|
|
namespace ApiServer.ApiStruct
|
|
{
|
|
public class DataCheckApi
|
|
{
|
|
public bool Status { get; set; }
|
|
public DateTime DateAndTime { get; set; }
|
|
public string Name { get; set; }
|
|
}
|
|
public class DataCheckClient
|
|
{
|
|
public bool Status { get; set; }
|
|
public bool Exist { get; set; }
|
|
public ulong DataSize { get; set; }
|
|
}
|
|
public class DataCreateApi
|
|
{
|
|
public bool Status { get; set; }
|
|
public DateTime DateAndTime { get; set; }
|
|
public string Name { get; set; }
|
|
public byte[] Struct { get; set; }
|
|
}
|
|
public class DataCreateClient
|
|
{
|
|
public bool Status { get; set; }
|
|
}
|
|
|
|
}
|