22 lines
416 B
C#
22 lines
416 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Api.Framework.Cps.CefSharp1
|
|||
|
{
|
|||
|
public class BaseResult
|
|||
|
{
|
|||
|
public BaseResult()
|
|||
|
{
|
|||
|
MsgId = new Random(Guid.NewGuid().GetHashCode()).Next().ToString();
|
|||
|
}
|
|||
|
|
|||
|
public string MsgId { get; set; }
|
|||
|
|
|||
|
public string Json { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|