using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace DkSdkCore
|
{
|
public abstract class DkResponse
|
{
|
public string cache { get; set; }
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public string requestId { get; set; }
|
|
public long time { get; set; }
|
}
|
}
|