Files
ShrlAlgoToolkit/AntDesignWPF/Contracts/ISpinable.cs

11 lines
289 B
C#
Raw Normal View History

2025-07-31 20:12:24 +08:00
namespace AntDesignWPF.Contracts
2025-07-11 09:20:23 +08:00
{
/// <summary>
/// Represents a spinable control. From https://github.com/charri/Font-Awesome-WPF/blob/master/src/WPF/FontAwesome.WPF/ISpinable.cs
/// </summary>
public interface ISpinable
{
bool? Spin { get; set; }
}
}