17 lines
363 B
C#
17 lines
363 B
C#
namespace Tnb.Vengine;
|
|
|
|
/// <summary>
|
|
/// 字典对象
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class VmodelSettingAttribute : Attribute
|
|
{
|
|
public string Area { get; set; }
|
|
public string? Code { get; set; }
|
|
|
|
public VmodelSettingAttribute(string area, string? code = null)
|
|
{
|
|
Area = area;
|
|
Code = code;
|
|
}
|
|
} |