This repository has been archived on 2023-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
BirdsiteLIVE/src/BirdsiteLive/Models/WellKnownModels/NodeInfoV20.cs

15 lines
465 B
C#

using System.ComponentModel.DataAnnotations;
namespace BirdsiteLive.Models.WellKnownModels
{
public class NodeInfoV20
{
public string version { get; set; }
public string[] protocols { get; set; }
public Software software { get; set; }
public Usage usage { get; set; }
public bool openRegistrations { get; set; }
public Services services { get; set; }
public Metadata metadata { get; set; }
}
}