Iceshrimp.NET/Iceshrimp.Backend/Controllers/Pleroma/Schemas/Entities/AkkomaNodeInfoSoftwareEntity.cs
notfire b0a19fe668
Some checks are pending
/ test-build-and-push (push) Waiting to run
oh right jank
2025-04-11 11:56:21 -04:00

9 lines
No EOL
302 B
C#

using J = System.Text.Json.Serialization.JsonPropertyNameAttribute;
namespace Iceshrimp.Backend.Controllers.Pleroma.Schemas.Entities;
public class AkkomaNodeInfoSoftwareEntity
{
[J("name")] public required string? Name { get; set; }
[J("version")] public required string? Version { get; set; }
}