MsnObj.cs 417 B

123456789101112131415161718
  1. using System;
  2. namespace SiteCore.Msn
  3. {
  4. public class MsnObj
  5. {
  6. public string mobile { get; set; }
  7. public DateTime lastTime { get; set; }
  8. public string code { get; set; }
  9. public int count { get; set; }
  10. private bool _isFinish = false;
  11. public bool isFinish
  12. {
  13. get { return _isFinish; }
  14. set { _isFinish = value; }
  15. }
  16. }
  17. }