AI_MMI_Analyser/c_Sharp_Code/subFrom/stationinfo.cs

36 lines
877 B
C#

using System;
namespace SL200_RTLogViewer.subForm
{
// Token: 0x0200001C RID: 28
public class StationInfo
{
// Token: 0x06000120 RID: 288 RVA: 0x00023719 File Offset: 0x00021919
public StationInfo(string stationName, DateTime time, int logIndex, int stationNumber)
{
this.StationName = stationName;
this.Time = time;
this.LogIndex = logIndex;
this.StationNumber = stationNumber;
}
// Token: 0x06000121 RID: 289 RVA: 0x00023740 File Offset: 0x00021940
public override string ToString()
{
return string.Format("[{0}] [{1}] {2}", this.StationNumber, this.Time.ToString("HH:mm:ss"), this.StationName);
}
// Token: 0x04000200 RID: 512
public string StationName;
// Token: 0x04000201 RID: 513
public DateTime Time;
// Token: 0x04000202 RID: 514
public int LogIndex;
// Token: 0x04000203 RID: 515
public int StationNumber;
}
}