using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DG.Core
{
public interface IApiResult
{
///
/// Gets or sets the status code.
///
/// The status code.
int Code { get; set; }
///
/// Gets or sets the message.
///
/// The message.
string Message { get; set; }
}
}