Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/GitHub.Api/Git/GitStatusEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ namespace GitHub.Unity
[Serializable]
struct GitStatusEntry
{
public readonly string Path;
public readonly string FullPath;
public readonly string ProjectPath;
public readonly string OriginalPath;
public readonly GitFileStatus Status;
public readonly bool Staged;
public string Path;
public string FullPath;
public string ProjectPath;
public string OriginalPath;
public GitFileStatus Status;
public bool Staged;

public GitStatusEntry(string path, string fullPath, string projectPath,
GitFileStatus status,
Expand Down