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
610 B
26 lines
610 B
using System.Text.Json.Serialization; |
|
|
|
namespace StabilityMatrix.Core.Models.Api; |
|
|
|
public record CivitModelVersionResponse( |
|
[property: JsonPropertyName("id")] |
|
int Id, |
|
|
|
[property: JsonPropertyName("modelId")] |
|
int ModelId, |
|
|
|
[property: JsonPropertyName("name")] |
|
string Name, |
|
|
|
[property: JsonPropertyName("baseModel")] |
|
string BaseModel, |
|
|
|
[property: JsonPropertyName("files")] |
|
List<CivitFile> Files, |
|
|
|
[property: JsonPropertyName("images")] |
|
List<CivitImage> Images, |
|
|
|
[property: JsonPropertyName("downloadUrl")] |
|
string DownloadUrl |
|
);
|
|
|