Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 2a6e2dd

Browse files
Data hiding
1 parent 5fbc0fd commit 2a6e2dd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/GitHub.Api/Git/GitBranch.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ public struct GitBranch : ITreeData
1313
{
1414
public static GitBranch Default = new GitBranch();
1515

16-
public string name;
17-
public string tracking;
18-
public bool isActive;
16+
private string name;
17+
private string tracking;
18+
private bool isActive;
1919

2020
public string Name { get { return name; } }
2121
public string Tracking { get { return tracking; } }

0 commit comments

Comments
 (0)