123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Domain
- {
-
-
-
- [Serializable]
- public class TodoRemind : AopObject
- {
-
-
-
- [XmlElement("business_type")]
- public string BusinessType { get; set; }
-
-
-
- [XmlElement("id")]
- public string Id { get; set; }
-
-
-
- [XmlElement("title")]
- public string Title { get; set; }
-
-
-
- [XmlElement("user_id")]
- public string UserId { get; set; }
- }
- }
|