using System.Collections.Generic;
namespace ZuneModCore
{
internal class StatusModel
{
///
/// The version of ZuneModCore that created this model.
///
public ReleaseVersion Version { get; set; }
///
/// A list of mods that are currently installed.
///
/// Key is mod ID and Value is installed version.
///
///
public Dictionary InstalledMods { get; set; }
}
}