智云SRM-WEBAPI(目前客户通用API)
王 垚
2021-11-15 0ce3c46b53766d9039ae7a5ae969af6a6fefd4e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace WebAPI.Models
{
    public class Message
    {
        public string ID { get; set; }
        public string Title { get; set; }
        public string MsgContent { get; set; }
    }
}