mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-16 07:59:46 +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
|
||
|
}
|
||
|
}
|