WIP: Major update #45

Closed
Hesham wants to merge 16 commits from develop-laptop into master
2 changed files with 3 additions and 1 deletions
Showing only changes of commit 8f3d764114 - Show all commits

View File

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

View File

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