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.
13 lines
261 B
13 lines
261 B
1 year ago
|
using System.Text.Json.Serialization;
|
||
2 years ago
|
|
||
1 year ago
|
namespace StabilityMatrix.Core.Models.Api;
|
||
2 years ago
|
|
||
|
public class ImageResponse
|
||
|
{
|
||
|
[JsonPropertyName("images")]
|
||
|
public string[] Images { get; set; }
|
||
2 years ago
|
|
||
2 years ago
|
[JsonPropertyName("info")]
|
||
|
public string? Info { get; set; }
|
||
|
}
|