21 lines
432 B
C#
21 lines
432 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CRM.Core.DTO.Api
|
|
{
|
|
[DataContract]
|
|
public class JsonResult<T>
|
|
{
|
|
[DataMember]
|
|
public bool result { get; set; }
|
|
[DataMember]
|
|
public int retcode { get; set; }
|
|
[DataMember]
|
|
public T retmsg { get; set; }
|
|
}
|
|
}
|