| 1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using Newtonsoft.Json;
- namespace YZXYH.Repository.Models
- {
- [Serializable]
- public partial class UserReply
- {
- public string Id { get; set; }
- public string TypeReplyId { get; set; }
- public string ParentId { get; set; }
- public string ContentReply { get; set; }
- public System.DateTime TimeReply { get; set; }
- public string IsLocked { get; set; }
- }
- }
|