mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
20 lines
290 B
C#
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;
|
|
}
|
|
}
|
|
}
|