CPF/CPF.Mac/Mac/RequiredFrameworkAttribute.cs
2023-11-21 23:05:03 +08:00

20 lines
290 B
C#

using System;
namespace CPF.Mac
{
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
public class RequiredFrameworkAttribute : Attribute
{
public string Name
{
get;
private set;
}
public RequiredFrameworkAttribute(string name)
{
Name = name;
}
}
}