mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
13 lines
155 B
C#
13 lines
155 B
C#
using System;
|
|
|
|
namespace CPF.Mac.AppKit
|
|
{
|
|
[Flags]
|
|
public enum NSFontCollectionVisibility : ulong
|
|
{
|
|
Process = 0x1,
|
|
User = 0x2,
|
|
Computer = 0x4
|
|
}
|
|
}
|