Uwaa/Pleroma/Models/AccountField.cs

13 lines
262 B
C#
Raw Normal View History

2024-12-18 10:56:02 +01:00
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; }
}