using System; using System.Collections.Generic; using System.Text; namespace Dfs.WayneChina.SpsDbManager.ResultSet { public class RegisterReqResult { public string Keyword { get; set; } public long StationLength { get; set; } public string SName { get; set; } public int RegistState { get; set; } } public class RegisterTerminalResult { public string SystemKey { get; set; } public long StationNameLength { get; set; } public string StationName { get; set; } public int RegisterResultCode { get; set; } } }