1 //
2 // Copyright (c) 2010-2018 Antmicro
3 // Copyright (c) 2011-2015 Realtime Embedded
4 //
5 // This file is licensed under the MIT License.
6 // Full license text is available in 'licenses/MIT.txt'.
7 //
8 
9 namespace Antmicro.Renode.Core
10 {
11     public class Platform
12     {
Platform()13         public Platform()
14         {
15             HasMemory = true;
16         }
17 
ToString()18         public override string ToString()
19         {
20             return Name;
21         }
22 
23         public string Name        { get; set; }
24         public string ScriptPath  { get; set; }
25         public bool   HasFlash    { get; set; }
26         public bool   HasPendrive { get; set; }
27         public bool   HasMemory   { get; set; }
28         public string IconResource { get; set; }
29     }
30 }
31 
32