public ServerRestart(ServerRestart restart) { Enabled = restart.Enabled; Time = new SimpleTime(restart.Time.Hours, restart.Time.Minutes); }
public ServerRestart(bool enabled, SimpleTime time) { Enabled = enabled; Time = time; }