new variable in Match. DateTime String.

This commit is contained in:
HeshamTB 2018-12-23 20:40:58 +03:00
parent c54c61c4d9
commit 8f3d764114
2 changed files with 3 additions and 1 deletions

View File

@ -171,7 +171,8 @@ namespace OWTrack
StartSR = tr.startSR,
newSR = tr.newSR,
ChangeInSR = tr.srDiff(),
dateTime = DateTime.Now.Date
dateTime = DateTime.Now.Date,
DateTimeSting = DateTime.Now.ToString("hh:mm tt")
};
tr.GetCurrentSession().AddMatch(match);
}

View File

@ -213,6 +213,7 @@ namespace OWTrack
{
public Match() { }
public DateTime dateTime { get; set; }
public string DateTimeSting;
public int StartSR;
public int LastMatchSR;
public int newSR;