11 lines
129 B
C#
11 lines
129 B
C#
using System;
|
|
|
|
namespace CPF.Mac.AppKit
|
|
{
|
|
[Flags]
|
|
public enum NSTextListOptions : ulong
|
|
{
|
|
PrependEnclosingMarker = 0x1
|
|
}
|
|
}
|