mirror of
https://github.com/ZuneDev/ZuneModdingHelper.git
synced 2026-07-27 13:12:21 -07:00
21 lines
560 B
C#
21 lines
560 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ZuneModCore
|
|
{
|
|
internal class StatusModel
|
|
{
|
|
/// <summary>
|
|
/// The version of ZuneModCore that created this model.
|
|
/// </summary>
|
|
public ReleaseVersion Version { get; set; }
|
|
|
|
/// <summary>
|
|
/// A list of mods that are currently installed.
|
|
/// <para>
|
|
/// <c>Key</c> is mod ID and <c>Value</c> is installed version.
|
|
/// </para>
|
|
/// </summary>
|
|
public Dictionary<string, ReleaseVersion> InstalledMods { get; set; }
|
|
}
|
|
}
|