Files
octokit.net/Octokit/Models/Response/ThreadSubscription.cs
2015-12-16 21:23:36 +02:00

58 lines
1.7 KiB
C#

using System;
using System.Diagnostics;
using System.Globalization;
namespace Octokit
{
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class ThreadSubscription
{
public ThreadSubscription() { }
public ThreadSubscription(bool subscribed, bool ignored, string reason, DateTimeOffset createdAt, Uri url, Uri threadUrl)
{
Subscribed = subscribed;
Ignored = ignored;
Reason = reason;
CreatedAt = createdAt;
Url = url;
ThreadUrl = threadUrl;
}
/// <summary>
/// Determines if notifications should be received from this repository.
/// </summary>
public bool Subscribed { get; protected set; }
/// <summary>
/// Determines if all notifications should be blocked from this repository.
/// </summary>
public bool Ignored { get; protected set; }
/// <summary>
/// Url of the label
/// </summary>
public string Reason { get; protected set; }
/// <summary>
/// The <see cref="DateTimeOffset"/> for when this <see cref="Subscription"/> was created.
/// </summary>
public DateTimeOffset CreatedAt { get; protected set; }
/// <summary>
/// The API URL for this <see cref="Subscription"/>.
/// </summary>
public Uri Url { get; protected set; }
/// <summary>
/// The API URL for this thread.
/// </summary>
public Uri ThreadUrl { get; protected set; }
internal string DebuggerDisplay
{
get { return string.Format(CultureInfo.InvariantCulture, "Subscribed: {0}", Subscribed); }
}
}
}