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.
39 lines
1002 B
39 lines
1002 B
using System.Text.Json.Serialization; |
|
|
|
namespace StabilityMatrix.Core.Models.Api; |
|
|
|
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; } |
|
|
|
[JsonPropertyName("baseModel")] |
|
public string? BaseModel { get; set; } |
|
|
|
[JsonPropertyName("files")] |
|
public List<CivitFile>? Files { get; set; } |
|
|
|
[JsonPropertyName("images")] |
|
public List<CivitImage>? Images { get; set; } |
|
|
|
[JsonPropertyName("stats")] |
|
public CivitModelStats Stats { get; set; } |
|
|
|
[JsonPropertyName("publishedAt")] |
|
public DateTimeOffset? PublishedAt { get; set; } |
|
}
|
|
|