using System; using System.Collections.Generic; using System.Text; namespace BirdsiteLive.ActivityPub.Models { public class WebFingerData { public List aliases { get; set; } public List links { get; set; } } public class WebFingerLink { public string href { get; set; } public string rel { get; set; } public string type { get; set; } public string template { get; set; } } }