wwservice/model/viewmodel/wwGroupTagView.cs

50 lines
961 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace model.viewmodel
{
public class wwGroupTagView
{
public string corpid { get; set; }
public string group_id { get; set; }
public string group_name { get; set; }
public long create_time { get; set; }
public int order { get; set; }
/*
[{
"id": "TAG_ID1",
"name": "NAME1",
"create_time": 1557838797,
"order": 1,
"deleted": false
},
{
"id": "TAG_ID2",
"name": "NAME2",
"create_time": 1557838797,
"order": 2,
"deleted": true
}
]
*/
public string tags { get; set; }
public List<wwGroupTagInfo> tagNumbers { get; set; }
}
public class wwGroupTagInfo
{
public string id { get; set; }
public string name { get; set; }
public int order { get; set; }
}
}