namespace Tnb.Vengine; /// /// 字典对象 /// [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; } }