36 lines
646 B
C#
36 lines
646 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace E_ZKEcc.Domian
|
|
{
|
|
[Serializable]
|
|
public class ResultDomian<T>
|
|
{
|
|
public string msg { get; set; }
|
|
|
|
public int ret { get; set; }
|
|
|
|
public ResultData<T> data { get; set; }
|
|
}
|
|
|
|
[Serializable]
|
|
public class ResultDomian
|
|
{
|
|
public string msg { get; set; }
|
|
|
|
public int ret { get; set; }
|
|
|
|
public string[] error_list { get; set; }
|
|
}
|
|
|
|
[Serializable]
|
|
public class ResultData<T>
|
|
{
|
|
public int count { get; set; }
|
|
|
|
public List<T> items { get; set; }
|
|
}
|
|
}
|