using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace FlexJobApi.Core.Models.ElectronSignServer.Common
|
{
|
public class ElectronSignServerResult<T>
|
{
|
public string Msg { get; set; }
|
public T Result { get; set; }
|
public bool Success { get; set; }
|
}
|
}
|