namespace DysonNetwork.Sphere.Connection.WebReader; /// /// The embeddable can be used in the post or messages' meta's embeds fields /// To render richer type of content. /// /// A simple example of using link preview embed: /// /// { /// // ... post content /// "meta": { /// "embeds": [ /// { /// "type": "link", /// "title: "...", /// /// ... /// } /// ] /// } /// } /// /// public interface IEmbeddable { public string Type { get; } }