Merge pull request #366 from trdwll/connectionid

Make Id public only a getter
This commit is contained in:
Garry Newman 2020-02-05 10:17:33 +00:00 committed by GitHub
commit cfa77bc9e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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();