namespace StardewModdingAPI.Framework.Models
{
/// Indicates which mod can read the content pack represented by the containing manifest.
internal class ManifestContentPackFor : IManifestContentPackFor
{
/*********
** Accessors
*********/
/// The unique ID of the mod which can read this content pack.
public string UniqueID { get; set; }
/// The minimum required version (if any).
public ISemanticVersion MinimumVersion { get; set; }
}
}