summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/Framework/IModDownload.cs
blob: dc058bcb3647e9f07c764cc17836ea08948a8b65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace StardewModdingAPI.Web.Framework
{
    /// <summary>Generic metadata about a file download on a mod page.</summary>
    internal interface IModDownload
    {
        /// <summary>The download's display name.</summary>
        string Name { get; }

        /// <summary>The download's description.</summary>
        string Description { get; }

        /// <summary>The download's file version.</summary>
        string Version { get; }
    }
}