16 lines
316 B
C#
16 lines
316 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebApi
|
|
{
|
|
public class msgResHeader
|
|
{
|
|
public string Code = string.Empty;
|
|
public string Message = string.Empty;
|
|
public string MsgId = string.Empty;
|
|
}
|
|
}
|