LeetCodeSharp/LeetCodeSharp.Fetcher/Models/CodeDefinition.cs

13 lines
302 B
C#
Raw Normal View History

2024-02-18 14:29:07 +08:00
using System.Text.Json.Serialization;
namespace LeetCodeSharp.Fetcher.Models;
internal class CodeDefinition
{
public required string Value { get; set; }
public required string Text { get; set; }
[JsonPropertyName("defaultCode")]
public required string DefaultCode { get; set; }
}