mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Added version field
This commit is contained in:
parent
a3305b08fe
commit
e8923a11f1
@ -95,6 +95,11 @@ namespace Wabbajack.Lib
|
||||
/// </summary>
|
||||
public Uri? Website;
|
||||
|
||||
/// <summary>
|
||||
/// Current Version of the Modlist
|
||||
/// </summary>
|
||||
public Version Version = new Version(1, 0, 0, 0);
|
||||
|
||||
/// <summary>
|
||||
/// The size of all the archives once they're downloaded
|
||||
/// </summary>
|
||||
|
@ -21,6 +21,7 @@ namespace Wabbajack
|
||||
public string Description => SourceModList?.Description;
|
||||
public Uri Website => SourceModList?.Website;
|
||||
public ModManager ModManager => SourceModList?.ModManager ?? ModManager.MO2;
|
||||
public Version Version => SourceModList?.Version;
|
||||
|
||||
// Image isn't exposed as a direct property, but as an observable.
|
||||
// This acts as a caching mechanism, as interested parties will trigger it to be created,
|
||||
|
Loading…
Reference in New Issue
Block a user