Client: Completed Feature "Utilities"

This commit is contained in:
Nicola Carminati
2018-04-24 15:06:14 +02:00
parent f53fe9d49d
commit 25c5e1aca2
9 changed files with 67 additions and 77 deletions
+6 -6
View File
@@ -11,17 +11,17 @@ namespace Client.Config.SubModels
public class Software
{
[DataMember]
public string Id { get; set; }
public string id { get; set; }
[DataMember]
public string Path { get; set; }
public string path { get; set; }
[DataMember]
public string LongName { get; set; }
public string longName { get; set; }
[DataMember]
public string ShortName { get; set; }
public string shortName { get; set; }
[DataMember]
public string Arguments { get; set; }
public string arguments { get; set; }
[DataMember]
public string IconBase64 { get; set; }
public string iconBase64 { get; set; }
}