12 lines
262 B
C#
12 lines
262 B
C#
namespace Uwaa.Pleroma;
|
|
|
|
public class AccountField
|
|
{
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; } = null!;
|
|
|
|
[JsonPropertyName("value")]
|
|
public string Value { get; set; } = null!;
|
|
|
|
public DateTime? VerifiedAt { get; set; }
|
|
}
|