Creation of ADO Connection
This commit is contained in:
@ -2,8 +2,9 @@ using System.Text.Json.Serialization;
|
||||
|
||||
namespace Adaptation.FileHandlers.json.WorkItems;
|
||||
|
||||
public class CommentVersionRef
|
||||
internal class CommentVersionRef
|
||||
{
|
||||
|
||||
[JsonConstructor]
|
||||
public CommentVersionRef(
|
||||
int commentId,
|
||||
@ -16,8 +17,14 @@ public class CommentVersionRef
|
||||
URL = url;
|
||||
}
|
||||
|
||||
[JsonPropertyName("commentId")] public int CommentId { get; } // { init; get; }
|
||||
[JsonPropertyName("url")] public string URL { get; } // { init; get; }
|
||||
[JsonPropertyName("version")] public int Version { get; } // { init; get; }
|
||||
[JsonPropertyName("commentId")] public int CommentId { get; }
|
||||
[JsonPropertyName("url")] public string URL { get; }
|
||||
[JsonPropertyName("version")] public int Version { get; }
|
||||
|
||||
}
|
||||
|
||||
[JsonSourceGenerationOptions(WriteIndented = true)]
|
||||
[JsonSerializable(typeof(CommentVersionRef))]
|
||||
internal partial class CommentVersionRefSourceGenerationContext : JsonSerializerContext
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user