Make Id public only a getter

This commit is contained in:
Russ Treadwell 2020-02-04 18:03:06 -05:00
parent f3443935b2
commit 427524abc9
No known key found for this signature in database
GPG Key ID: 7A373FB1F4118C62

View File

@ -5,7 +5,7 @@ namespace Steamworks.Data
{
public struct Connection
{
internal uint Id;
public uint Id { get; }
public override string ToString() => Id.ToString();