1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace XHZB.Model
- {
- public class RollCallModel
- {
- public int userid { set; get; }
- public string username { set; get; }
- public string userpic { set; get; }
- public int usertype { set; get; }
- public int replies { get; set; }
- }
- }
|