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.
26 lines
566 B
26 lines
566 B
using System.Text.Json.Serialization; |
|
|
|
namespace StabilityMatrix.Core.Models.Api; |
|
|
|
public class CivitImage |
|
{ |
|
[JsonPropertyName("url")] |
|
public string Url { get; set; } |
|
|
|
[JsonPropertyName("nsfwLevel")] |
|
public int? NsfwLevel { get; set; } |
|
|
|
[JsonPropertyName("width")] |
|
public int Width { get; set; } |
|
|
|
[JsonPropertyName("height")] |
|
public int Height { get; set; } |
|
|
|
[JsonPropertyName("hash")] |
|
public string Hash { get; set; } |
|
|
|
[JsonPropertyName("type")] |
|
public string Type { get; set; } |
|
|
|
// TODO: "meta" ( object? ) |
|
}
|
|
|