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.
27 lines
610 B
27 lines
610 B
1 year ago
|
using System.Text.Json.Serialization;
|
||
1 year ago
|
|
||
1 year ago
|
namespace StabilityMatrix.Core.Models.Api;
|
||
1 year ago
|
|
||
|
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
|
||
|
);
|