namespace Ursa.Controls; /// /// Represents a toast that can be shown in a window or by the host operating system. /// public interface IToast : IMessage { /// /// Gets the toast message. /// string? Content { get; } }