summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/Networking/RemoteContextModModel.cs
blob: 9795d9716cf0ee11b318dad35466395ce3721bc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace StardewModdingAPI.Framework.Networking
{
    /// <summary>Metadata about an installed mod exchanged with connected computers.</summary>
    public class RemoteContextModModel
    {
        /// <summary>The mod's display name.</summary>
        public string Name { get; set; }

        /// <summary>The unique mod ID.</summary>
        public string ID { get; set; }

        /// <summary>The mod version.</summary>
        public ISemanticVersion Version { get; set; }
    }
}