mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-09-18 09:44:52 +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;
|
|
}
|
|
}
|
|
}
|