123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Request.Addressee
- {
-
-
-
- public class NoticeAddresseeInRequest
- {
-
-
-
- public int ArticleId { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public string UserName { get; set; }
-
-
-
- public bool IsRead { get; set; }
- }
- }
|