Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit f4d59bb

Browse files
Formatting and xmldocs
1 parent 923ad51 commit f4d59bb

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

src/GitHub.App/Models/PullRequestModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,4 +183,4 @@ internal string DebuggerDisplay
183183
}
184184
}
185185
}
186-
}
186+
}

src/GitHub.App/SampleData/LocalRepositoryModelDesigner.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using GitHub.UI;
77
using GitHub.Exports;
88

9-
namespace GitHub.SampleData
9+
namespace GitHub.App.SampleData
1010
{
1111
public class LocalRepositoryModelDesigner : ILocalRepositoryModel
1212
{
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,33 @@
11
namespace GitHub.Models
22
{
3+
/// <summary>
4+
/// Holds details about a pull request Status
5+
/// </summary>
36
public class StatusModel
47
{
8+
/// <summary>
9+
/// The state of the Status
10+
/// </summary>
511
public StatusState State { get; set; }
612

13+
/// <summary>
14+
/// The Status context or title
15+
/// </summary>
716
public string Context { get; set; }
817

18+
/// <summary>
19+
/// The url where more information about the Status can be found
20+
/// </summary>
921
public string TargetUrl { get; set; }
1022

23+
/// <summary>
24+
/// The descritption for the Status
25+
/// </summary>
1126
public string Description { get; set; }
1227

28+
/// <summary>
29+
/// The Url for the avatar for the Status
30+
/// </summary>
1331
public string AvatarUrl { get; set; }
1432
}
1533
}

0 commit comments

Comments
 (0)