18 lines
283 B
C#
18 lines
283 B
C#
using System.ComponentModel;
|
|
|
|
namespace KamiToolKit.Enums;
|
|
|
|
public enum LayoutAnchor {
|
|
[Description("Top Left")]
|
|
TopLeft,
|
|
|
|
[Description("Top Right")]
|
|
TopRight,
|
|
|
|
[Description("Bottom Left")]
|
|
BottomLeft,
|
|
|
|
[Description("Bottom Right")]
|
|
BottomRight,
|
|
}
|