12 lines
176 B
C#
12 lines
176 B
C#
using System.ComponentModel;
|
|
|
|
namespace KamiToolKit.Enums;
|
|
|
|
public enum VerticalListAlignment {
|
|
[Description("Left")]
|
|
Left,
|
|
|
|
[Description("Right")]
|
|
Right,
|
|
}
|