mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-09-19 01:58:20 +08:00
15 lines
198 B
C#
15 lines
198 B
C#
![]() |
using System;
|
||
|
|
||
|
namespace CPF.Mac.ObjCRuntime
|
||
|
{
|
||
|
public class CompileFlagsAttribute : Attribute
|
||
|
{
|
||
|
public string Flags;
|
||
|
|
||
|
public CompileFlagsAttribute(string flags)
|
||
|
{
|
||
|
Flags = flags;
|
||
|
}
|
||
|
}
|
||
|
}
|