namespace Dalamud.Game.Gui.Toast; /// /// This class represents options that can be used with the class. /// public sealed class ToastOptions { /// /// Gets or sets the position of the toast on the screen. /// public ToastPosition Position { get; set; } = ToastPosition.Bottom; /// /// Gets or sets the speed of the toast. /// public ToastSpeed Speed { get; set; } = ToastSpeed.Slow; }