-
-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
155 changed files
with
41,873 additions
and
54,746 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
using System.Collections.Generic; | ||
using System.Runtime.Serialization; | ||
|
||
namespace ARKBreedingStats | ||
{ | ||
/// <summary> | ||
/// Contains infos about the versions of different parts of this application | ||
/// </summary> | ||
[DataContract] | ||
class ASBManifest | ||
{ | ||
/// <summary> | ||
/// Must be present and a supported value. | ||
/// </summary> | ||
[DataMember] | ||
private string format; | ||
|
||
/// <summary> | ||
/// Dictionary of Versions. | ||
/// Expected is at least the key "version" in each entry. | ||
/// </summary> | ||
[DataMember] | ||
public Dictionary<string, Dictionary<string, string>> versions; | ||
} | ||
} |
Oops, something went wrong.