blob: 0383576cb9e819b06a937374b5c81a281d5a7ee4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#nullable disable
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; }
}
}
|