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.
37 lines
946 B
37 lines
946 B
1 year ago
|
using System.Text.Json.Serialization;
|
||
1 year ago
|
|
||
1 year ago
|
namespace StabilityMatrix.Core.Models.Api;
|
||
1 year ago
|
|
||
|
public class CivitModelVersion
|
||
|
{
|
||
|
[JsonPropertyName("id")]
|
||
|
public int Id { get; set; }
|
||
|
|
||
|
[JsonPropertyName("name")]
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
[JsonPropertyName("description")]
|
||
|
public string Description { get; set; }
|
||
|
|
||
|
[JsonPropertyName("createdAt")]
|
||
|
public DateTime CreatedAt { get; set; }
|
||
|
|
||
|
[JsonPropertyName("downloadUrl")]
|
||
|
public string DownloadUrl { get; set; }
|
||
|
|
||
|
[JsonPropertyName("trainedWords")]
|
||
|
public string[] TrainedWords { get; set; }
|
||
|
|
||
1 year ago
|
[JsonPropertyName("baseModel")]
|
||
|
public string? BaseModel { get; set; }
|
||
|
|
||
1 year ago
|
[JsonPropertyName("files")]
|
||
1 year ago
|
public List<CivitFile>? Files { get; set; }
|
||
1 year ago
|
|
||
|
[JsonPropertyName("images")]
|
||
1 year ago
|
public List<CivitImage>? Images { get; set; }
|
||
1 year ago
|
|
||
|
[JsonPropertyName("stats")]
|
||
|
public CivitModelStats Stats { get; set; }
|
||
|
}
|