90 lines
2.6 KiB
C#
90 lines
2.6 KiB
C#
#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring as nullable.
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Blueberry.Redmine.Dto
|
|
{
|
|
public class ProjectTrackers
|
|
{
|
|
public class CustomField
|
|
{
|
|
[JsonPropertyName("id")]
|
|
public int Id { get; set; }
|
|
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; }
|
|
|
|
[JsonPropertyName("value")]
|
|
public string Value { get; set; }
|
|
}
|
|
|
|
public class Parent
|
|
{
|
|
[JsonPropertyName("id")]
|
|
public int Id { get; set; }
|
|
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; }
|
|
}
|
|
|
|
public class Project
|
|
{
|
|
[JsonPropertyName("id")]
|
|
public int Id { get; set; }
|
|
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; }
|
|
|
|
[JsonPropertyName("identifier")]
|
|
public string Identifier { get; set; }
|
|
|
|
[JsonPropertyName("description")]
|
|
public string Description { get; set; }
|
|
|
|
[JsonPropertyName("homepage")]
|
|
public string Homepage { get; set; }
|
|
|
|
[JsonPropertyName("parent")]
|
|
public Parent Parent { get; set; }
|
|
|
|
[JsonPropertyName("status")]
|
|
public int Status { get; set; }
|
|
|
|
[JsonPropertyName("is_public")]
|
|
public bool IsPublic { get; set; }
|
|
|
|
[JsonPropertyName("inherit_members")]
|
|
public bool InheritMembers { get; set; }
|
|
|
|
[JsonPropertyName("custom_fields")]
|
|
public List<CustomField> CustomFields { get; set; }
|
|
|
|
[JsonPropertyName("trackers")]
|
|
public List<Tracker> Trackers { get; set; }
|
|
|
|
[JsonPropertyName("created_on")]
|
|
public DateTime CreatedOn { get; set; }
|
|
|
|
[JsonPropertyName("updated_on")]
|
|
public DateTime UpdatedOn { get; set; }
|
|
}
|
|
|
|
public class Root
|
|
{
|
|
[JsonPropertyName("project")]
|
|
public Project Project { get; set; }
|
|
}
|
|
|
|
public class Tracker
|
|
{
|
|
[JsonPropertyName("id")]
|
|
public int Id { get; set; }
|
|
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; }
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
#pragma warning restore CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring as nullable.
|