You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
509 B
24 lines
509 B
1 year ago
|
using System.Text.Json.Serialization;
|
||
|
|
||
1 year ago
|
namespace StabilityMatrix.Core.Models.Api;
|
||
1 year ago
|
|
||
|
public class CivitImage
|
||
|
{
|
||
|
[JsonPropertyName("url")]
|
||
|
public string Url { get; set; }
|
||
|
|
||
|
[JsonPropertyName("nsfw")]
|
||
|
public string Nsfw { get; set; }
|
||
|
|
||
|
[JsonPropertyName("width")]
|
||
|
public int Width { get; set; }
|
||
|
|
||
|
[JsonPropertyName("height")]
|
||
|
public int Height { get; set; }
|
||
|
|
||
|
[JsonPropertyName("hash")]
|
||
|
public string Hash { get; set; }
|
||
|
|
||
|
// TODO: "meta" ( object? )
|
||
|
}
|