blob: 9f4b2c6f163ce799f0eec8e6ef22b1839d129ec5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace StardewModdingAPI.Web.Framework.Clients.ModDrop.ResponseModels
{
/// <summary>An entry in a mod list from the ModDrop API.</summary>
public class ModModel
{
/// <summary>The available file downloads.</summary>
public FileDataModel[] Files { get; set; }
/// <summary>The mod metadata.</summary>
public ModDataModel Mod { get; set; }
}
}
|