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.
24 lines
564 B
24 lines
564 B
using System.Text.Json.Serialization; |
|
|
|
namespace StabilityMatrix.Core.Models.Api.OpenArt; |
|
|
|
public class OpenArtCreator |
|
{ |
|
[JsonPropertyName("uid")] |
|
public string Uid { get; set; } |
|
|
|
[JsonPropertyName("name")] |
|
public string Name { get; set; } |
|
|
|
[JsonPropertyName("bio")] |
|
public string Bio { get; set; } |
|
|
|
[JsonPropertyName("avatar")] |
|
public Uri Avatar { get; set; } |
|
|
|
[JsonPropertyName("username")] |
|
public string Username { get; set; } |
|
|
|
[JsonPropertyName("dev_profile_url")] |
|
public string DevProfileUrl { get; set; } |
|
}
|
|
|