This commit is contained in:
Amy Palamountain
2014-02-19 22:00:56 +13:00
parent fa9c618302
commit cd5627c824
5 changed files with 55 additions and 5 deletions
+9 -1
View File
@@ -1,5 +1,4 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
@@ -8,6 +7,7 @@ namespace Octokit
/// <summary>
/// organization teams
/// </summary>
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class Team
{
/// <summary>
@@ -44,5 +44,13 @@ namespace Octokit
/// who this team belongs to
/// </summary>
public Organization Organization { get; set; }
internal string DebuggerDisplay
{
get
{
return String.Format(CultureInfo.InvariantCulture, "Name: {0} ", Name);
}
}
}
}