This commit is contained in:
GG Z
2026-01-02 16:37:37 +08:00
parent 4df4ce1e6a
commit 0e9db9a2b9
80 changed files with 1846 additions and 4570 deletions

View File

@@ -12,8 +12,8 @@ namespace RevitLess
#region Private Variables
private string _fileName = string.Empty;
private bool _isInitialized = false;
private string fileName = string.Empty;
private bool isInitialized = false;
#endregion
@@ -37,11 +37,11 @@ namespace RevitLess
{
get
{
return _isInitialized;
return isInitialized;
}
protected set
{
_isInitialized = value;
isInitialized = value;
}
}
@@ -49,11 +49,11 @@ namespace RevitLess
{
get
{
return _fileName;
return fileName;
}
protected set
{
_fileName = value;
fileName = value;
}
}