namespace StardewModdingAPI { /// Indicates which mod can read the content pack represented by the containing manifest. public interface IManifestContentPackFor { /// The unique ID of the mod which can read this content pack. string UniqueID { get; } /// The minimum required version (if any). ISemanticVersion? MinimumVersion { get; } } }