summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI.Toolkit/Serialisation/Models/ManifestContentPackFor.cs
blob: 005465332844124ced2f8650ccc2ede38edb0121 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace StardewModdingAPI.Toolkit.Serialisation.Models
{
    /// <summary>Indicates which mod can read the content pack represented by the containing manifest.</summary>
    public class ManifestContentPackFor
    {
        /*********
        ** Accessors
        *********/
        /// <summary>The unique ID of the mod which can read this content pack.</summary>
        public string UniqueID { get; set; }

        /// <summary>The minimum required version (if any).</summary>
        public SemanticVersion MinimumVersion { get; set; }
    }
}