namespace StardewModdingAPI { /// A manifest which describes a mod for SMAPI. public interface IManifest { /// The mod name. string Name { get; set; } /// A brief description of the mod. string Description { get; set; } /// The mod author's name. string Author { get; } /// The mod version. ISemanticVersion Version { get; set; } /// The minimum SMAPI version required by this mod, if any. string MinimumApiVersion { get; set; } /// The unique mod ID. string UniqueID { get; set; } /// The name of the DLL in the directory that has the method. string EntryDll { get; set; } } }