From cc3580867c90973c7ca1deef7e5a3a7fc42454f4 Mon Sep 17 00:00:00 2001 From: Dylan George Field <13308154+dylan-george-field@users.noreply.github.com> Date: Wed, 11 Jan 2023 19:20:22 +1100 Subject: [PATCH] Flip connected network to middle for better sorting --- src/wfh-log-wpf/Entity/LogEntry.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wfh-log-wpf/Entity/LogEntry.cs b/src/wfh-log-wpf/Entity/LogEntry.cs index dc64119..f1c2c88 100644 --- a/src/wfh-log-wpf/Entity/LogEntry.cs +++ b/src/wfh-log-wpf/Entity/LogEntry.cs @@ -5,8 +5,8 @@ namespace wfh_log_wpf.Models public class LogEntry { public DateTime Time { get; set; } = DateTime.Now.ToLocalTime(); - public string ConnectedNetwork { get; set; } public bool IsWorkingFromHome { get; set; } = false; + public string ConnectedNetwork { get; set; } public LogEntry() { } // for csv helper