namespace StardewModdingAPI.Web.Framework.Clients.CurseForge.ResponseModels
{
/// Metadata from the CurseForge API about a mod file.
public class ModFileModel
{
/*********
** Accessors
*********/
/// The file name as downloaded.
public string FileName { get; }
/// The file display name.
public string? DisplayName { get; }
/*********
** Public methods
*********/
/// Construct an instance.
/// The file name as downloaded.
/// The file display name.
public ModFileModel(string fileName, string? displayName)
{
this.FileName = fileName;
this.DisplayName = displayName;
}
}
}