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; } } }