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/NodeInfoV21.cs

13 lines
422 B
C#

namespace BirdsiteLive.Models.WellKnownModels
{
public class NodeInfoV21
{
public string version { get; set; }
public string[] protocols { get; set; }
public Usage usage { get; set; }
public bool openRegistrations { get; set; }
public SoftwareV21 software { get; set; }
public Services services { get; set; }
public Metadata metadata { get; set; }
}
}