website/Website/Data/States/Git/CommitDetailsState.cs

11 lines
No EOL
359 B
C#

namespace Website.Data.States.Git {
public class CommitDetailsState {
public string url { get; set; }
public string sha { get; set; }
public string html_url { get; set; }
public CommitState commit { get; set; }
public UserState author { get; set; }
public UserState committer { get; set; }
public CommitPointerState[] parents { get; set; }
}
}