CPF/CPF.Mac/Mac/RequiredFrameworkAttribute.cs

20 lines
290 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
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;
}
}
}