using System.Collections.Generic;
namespace StardewModdingAPI.Web.Framework.Clients.ModDrop.ResponseModels
{
/// A list of mods from the ModDrop API.
public class ModListModel
{
/*********
** Accessors
*********/
/// The mod data.
public IDictionary Mods { get; } = new Dictionary();
}
}