MosswartMassacre/Unused/Decal.Adapter/ViewBaseAttribute.cs
2025-06-09 02:03:11 +02:00

28 lines
334 B
C#

using System;
namespace Decal.Adapter;
public abstract class ViewBaseAttribute : Attribute
{
private string myName;
/// <summary>
/// Name named attribute
/// </summary>
public string ViewName
{
get
{
return myName;
}
set
{
myName = value;
}
}
protected ViewBaseAttribute()
{
myName = "Default";
}
}