| 123456789101112131415161718 |
- using System;
- namespace SiteCore.Msn
- {
- public class MsnObj
- {
- public string mobile { get; set; }
- public DateTime lastTime { get; set; }
- public string code { get; set; }
- public int count { get; set; }
- private bool _isFinish = false;
- public bool isFinish
- {
- get { return _isFinish; }
- set { _isFinish = value; }
- }
- }
- }
|