blob: b8d1f62c1fb0ca2cc3ba5025c6cc6fb47238f6db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#nullable disable
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; }
}
}
|