blob: 6cae16d9ef3c0967214f36f9cb94c06ee1e4c5cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#nullable disable
namespace StardewModdingAPI.Web.Framework.Clients.ModDrop.ResponseModels
{
/// <summary>Metadata about a mod from the ModDrop API.</summary>
public class ModDataModel
{
/// <summary>The mod's unique ID on ModDrop.</summary>
public int ID { get; set; }
/// <summary>The error code, if any.</summary>
public int? ErrorCode { get; set; }
/// <summary>The mod name.</summary>
public string Title { get; set; }
}
}
|