mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-15 23:13:33 +08:00
14 lines
197 B
C#
14 lines
197 B
C#
![]() |
using System;
|
||
|
|
||
|
namespace CPF.Mac.Foundation
|
||
|
{
|
||
|
[Flags]
|
||
|
public enum NSFileCoordinatorWritingOptions : ulong
|
||
|
{
|
||
|
ForDeleting = 0x1,
|
||
|
ForMoving = 0x2,
|
||
|
ForMerging = 0x4,
|
||
|
ForReplacing = 0x8
|
||
|
}
|
||
|
}
|