11 lines
289 B
C#
11 lines
289 B
C#
namespace AntDesignWPF.Contracts
|
|
{
|
|
/// <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; }
|
|
}
|
|
}
|