summaryrefslogtreecommitdiff
path: root/Dewdrop/Models/IModModel.cs
blob: f1b09f8afbe9a05e14a9cd48858804d8da881dc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Dewdrop.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();
    }
}