15 lines
337 B
C#
15 lines
337 B
C#
using System;
|
|
|
|
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class UIViewAttribute : Attribute
|
|
{
|
|
public UIViewAttribute(string ussClassName = null)
|
|
{
|
|
UssClassName = ussClassName;
|
|
}
|
|
|
|
public string UssClassName { get; set; }
|
|
}
|
|
} |