namespace Uwaa.Pleroma; /// /// Special timelines. /// public enum Timeline { /// /// Statuses with a "direct" scope addressed to the account. /// Direct, /// /// Statuses from followed users. /// Home, /// /// Statuses from the local instance. /// Local, /// /// Statuses from instances in the instance's bubble. /// Bubble, /// /// All statuses visible to the instance. /// All, }