namespace StardewModdingAPI.Web.Framework.Clients.ModDrop.ResponseModels { /// An entry in a mod list from the ModDrop API. public class ModModel { /********* ** Accessors *********/ /// The available file downloads. public FileDataModel[] Files { get; } /// The mod metadata. public ModDataModel Mod { get; } /********* ** Public methods *********/ /// Construct an instance. /// The available file downloads. /// The mod metadata. public ModModel(FileDataModel[] files, ModDataModel mod) { this.Files = files; this.Mod = mod; } } }