mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
33 lines
853 B
C#
33 lines
853 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace RadzenBlazorDemos.Models.GitHub
|
|
{
|
|
public class Issue
|
|
{
|
|
[JsonPropertyName("html_url")]
|
|
public string Url { get; set; }
|
|
|
|
[JsonPropertyName("created_at")]
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
[JsonPropertyName("closed_at")]
|
|
public DateTime? ClosedAt { get; set; }
|
|
|
|
[JsonPropertyName("title")]
|
|
public string Title { get; set; }
|
|
|
|
[JsonPropertyName("labels")]
|
|
public IEnumerable<Label> Labels { get; set; }
|
|
|
|
[JsonPropertyName("user")]
|
|
public User User { get; set; }
|
|
|
|
[JsonPropertyName("assignees")]
|
|
public IEnumerable<User> Assignees { get; set; }
|
|
|
|
[JsonPropertyName("state")]
|
|
public IssueState State { get; set; }
|
|
}
|
|
} |