12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Request.App.Group
- {
-
-
-
- public class GroupUpRequest
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public string AvatarUrl { get; set; }
-
-
-
- public string Introduce { get; set; }
-
-
-
- public bool IsAdmin { get; set; }
-
-
-
- public bool IsWords { get; set; }
-
-
-
- public bool IsUDisturb { get; set; }
-
-
-
- public int GroupFolderId { get; set; }
- }
- }
|