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

Commit 56c234d

Browse files
authored
Merge pull request #156 from github-for-unity/fixes/git-status
Fix to remove readonly from GitStatus
2 parents 8e42a1e + c8ff53d commit 56c234d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/GitHub.Api/Git/GitStatusEntry.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ namespace GitHub.Unity
55
[Serializable]
66
struct GitStatusEntry
77
{
8-
public readonly string Path;
9-
public readonly string FullPath;
10-
public readonly string ProjectPath;
11-
public readonly string OriginalPath;
12-
public readonly GitFileStatus Status;
13-
public readonly bool Staged;
8+
public string Path;
9+
public string FullPath;
10+
public string ProjectPath;
11+
public string OriginalPath;
12+
public GitFileStatus Status;
13+
public bool Staged;
1414

1515
public GitStatusEntry(string path, string fullPath, string projectPath,
1616
GitFileStatus status,

0 commit comments

Comments
 (0)