blob: 8869193e4151924d95bac670db3f4d34e7d0a252 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#nullable disable
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; }
}
}
|