using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace stonevox.Mod { public class FileReference { public string file { get; } public FileReference(string file) { this.file = file; } } }