Microscopic Traffic Simulator
ISettings.cs
Go to the documentation of this file.
1 namespace Microscopic_Traffic_Simulator.ViewModels
2 {
6  interface ISettings
7  {
11  string LastGeometricTopologyPath { get; set; }
12 
16  int PreviousSeed { get; set; }
17 
21  bool PreviousSeedNull { get; set; }
22 
26  bool IsSeedSettingAutomatic { get; set; }
27 
31  bool IsPreviousSeedUsed { get; set; }
32 
36  string PathToParameters { get; set; }
37 
41  void Save();
42  }
43 }
Interface of application settings.
Definition: ISettings.cs:6