15 lines
294 B
C#
15 lines
294 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Commonlib
|
|||
|
|
{
|
|||
|
|
public class HostMsg
|
|||
|
|
{
|
|||
|
|
public bool IsSuccess { get; set; }
|
|||
|
|
public List<Dictionary<string, string>> Result { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|