清除common.props
This commit is contained in:
@@ -6,12 +6,18 @@
|
||||
[AttributeUsage(AttributeTargets.Class)]
|
||||
public class VmodelSettingAttribute : Attribute
|
||||
{
|
||||
public string Area { get; set; }
|
||||
public string? Id { get; set; }
|
||||
public string? Area { get; set; }
|
||||
public string? Code { get; set; }
|
||||
|
||||
public VmodelSettingAttribute(string id)
|
||||
{
|
||||
Id = id;
|
||||
}
|
||||
public VmodelSettingAttribute(string area, string? code = null)
|
||||
{
|
||||
Area = area;
|
||||
Code = code;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user