19 lines
428 B
C#
19 lines
428 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
|
|
namespace libEShangPB
|
|
{
|
|
[ComVisible(false)]
|
|
internal class ZCGCResultModel<T>
|
|
{
|
|
public long Timestamp { get; set; }
|
|
public int Code { get; set; }
|
|
public bool Success { get; set; }
|
|
public string Msg { get; set; }
|
|
public T Data { get; set; }
|
|
}
|
|
}
|