blob: 2eadcaec4d992c7a6db5b15e6ef2ae053d810f48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace StardewModdingAPI.Web.Models
{
/// <summary>A mod metadata response which provides a method to extract generic info.</summary>
internal interface IModModel
{
/*********
** Public methods
*********/
/// <summary>Get basic mod metadata.</summary>
ModGenericModel ModInfo();
}
}
|