20 lines
469 B
C#
20 lines
469 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BayonetTransfer.Model
|
|
{
|
|
/// <summary>
|
|
/// 返回object数据对象使用
|
|
/// </summary>
|
|
/// <typeparam name="T">数据对象</typeparam>
|
|
public class ResultDataModel<T>
|
|
{
|
|
public int Result_Code { get; set; }
|
|
public string Result_Desc { get; set; }
|
|
public T Result_Data { get; set; }
|
|
}
|
|
}
|