mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-15 14:04:34 +08:00
15 lines
240 B
C#
15 lines
240 B
C#
using CPF.Mac.ObjCRuntime;
|
|
using System;
|
|
|
|
namespace CPF.Mac.Foundation
|
|
{
|
|
[Since(4, 0)]
|
|
[Flags]
|
|
public enum NSFileManagerItemReplacementOptions : ulong
|
|
{
|
|
None = 0x0,
|
|
UsingNewMetadataOnly = 0x1,
|
|
WithoutDeletingBackupItem = 0x2
|
|
}
|
|
}
|