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;
|
|
}
|
|
}
|
|
}
|