Skip to content

Commit

Permalink
Exclude Handle in interface
Browse files Browse the repository at this point in the history
  • Loading branch information
TheR00st3r committed Nov 3, 2023
1 parent 6853231 commit 407cef8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion PugSharp.Match.Contract/IPlayer.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
namespace PugSharp.Match.Contract;
using System.Text.Json.Serialization;

namespace PugSharp.Match.Contract;

public interface IPlayer
{
[JsonIgnore]
nint Handle { get; }

ulong SteamID { get; }
Expand Down

0 comments on commit 407cef8

Please sign in to comment.