8 lines
146 B
C#
8 lines
146 B
C#
|
using System.Text.Json.Serialization;
|
||
|
|
||
|
namespace Social;
|
||
|
|
||
|
public class WaifuData
|
||
|
{
|
||
|
[JsonPropertyName("url")] public string URL { get; set; }
|
||
|
}
|