Uwaa/Pleroma/Models/AccountField.cs

18 lines
333 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!;
2024-12-27 18:46:14 +01:00
public DateTimeOffset? VerifiedAt { get; set; }
2024-12-26 00:09:26 +01:00
2024-12-26 00:34:13 +01:00
[JsonConstructor()]
2024-12-26 00:09:26 +01:00
internal AccountField()
{
}
2024-12-18 10:56:02 +01:00
}