14 lines
258 B
C#
14 lines
258 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace NetPanel.Entity
|
|
{
|
|
public class ReturnMsg
|
|
{
|
|
public int Code { get; set; }
|
|
public object Msg { get; set; }
|
|
public object Obj { get; set; }
|
|
}
|
|
}
|