namespace StardewModdingAPI { /// An instance linked to a mod. public interface IModLinked { /********* ** Accessors *********/ /// The unique ID of the mod for which the instance was created. string ModID { get; } } }