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.
23 lines
509 B
23 lines
509 B
using System.Text.Json.Serialization; |
|
|
|
namespace StabilityMatrix.Core.Models.Api; |
|
|
|
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? ) |
|
}
|
|
|