namespace StardewModdingAPI.Web.Framework.Clients.ModDrop.ResponseModels { /// Metadata from the ModDrop API about a mod file. public class FileDataModel { /// Whether the file is deleted. public bool IsDeleted { get; set; } /// Whether the file is hidden from users. public bool IsHidden { get; set; } /// Whether this is the default file for the mod. public bool IsDefault { get; set; } /// Whether this is an archived file. public bool IsOld { get; set; } /// The file version. public string Version { get; set; } } }