namespace StardewModdingAPI.Web.Framework
{
/// Generic metadata about a file download on a mod page.
internal interface IModDownload
{
/*********
** Accessors
*********/
/// The download's display name.
string Name { get; }
/// The download's description.
string? Description { get; }
/// The download's file version.
string? Version { get; }
}
}