blob: fa84b28700ce711b1fc6240aefb2935c2bc15bf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
namespace StardewModdingAPI.Web.Framework.Clients.ModDrop.ResponseModels
{
/// <summary>Metadata from the ModDrop API about a mod file.</summary>
public class FileDataModel
{
/// <summary>Whether the file is deleted.</summary>
public bool IsDeleted { get; set; }
/// <summary>Whether the file is hidden from users.</summary>
public bool IsHidden { get; set; }
/// <summary>Whether this is the default file for the mod.</summary>
public bool IsDefault { get; set; }
/// <summary>Whether this is an archived file.</summary>
public bool IsOld { get; set; }
/// <summary>The file version.</summary>
public string Version { get; set; }
}
}
|