Files
Ursa.Avalonia/src/Ursa/Controls/Toast/IToast.cs
2024-09-09 19:08:42 +08:00

12 lines
280 B
C#

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