using System; using System.Collections.Generic; using System.Text; namespace WmData { public class WmDataLinkStatus { protected int id; protected long lastSyncMomentUtcTicks; public int Id { get { return id; } set { id = value; } } public long LastSyncMomentUtcTicks { get { return lastSyncMomentUtcTicks; } set { lastSyncMomentUtcTicks = value; } } } }