forked from opensourceautomation/Open-Source-Automation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a number code comments to help developers
- Loading branch information
1 parent
30739a1
commit 32dd75c
Showing
5 changed files
with
562 additions
and
539 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,45 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
|
||
namespace OSAE | ||
namespace OSAE | ||
{ | ||
public class OSAEObjectType | ||
{ | ||
private string _name; | ||
private string _baseType; | ||
private string _description; | ||
private string _ownedBy; | ||
private bool _owner; | ||
private bool _container; | ||
private bool _sysType; | ||
private bool _hideRedundant; | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string Name { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string BaseType { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string Description { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public string OwnedBy { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public bool Owner { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public bool Container { get; set; } | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public bool SysType { get; set; } | ||
|
||
public string Name | ||
{ | ||
get { return _name; } | ||
set { _name = value; } | ||
} | ||
public string BaseType | ||
{ | ||
get { return _baseType; } | ||
set { _baseType = value; } | ||
} | ||
public string Description | ||
{ | ||
get { return _description; } | ||
set { _description = value; } | ||
} | ||
public string OwnedBy | ||
{ | ||
get { return _ownedBy; } | ||
set { _ownedBy = value; } | ||
} | ||
public bool Owner | ||
{ | ||
get { return _owner; } | ||
set { _owner = value; } | ||
} | ||
public bool Container | ||
{ | ||
get { return _container; } | ||
set { _container = value; } | ||
} | ||
public bool SysType | ||
{ | ||
get { return _sysType; } | ||
set { _sysType = value; } | ||
} | ||
public bool HideRedundant | ||
{ | ||
get { return _hideRedundant; } | ||
set { _hideRedundant = value; } | ||
} | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public bool HideRedundant { get; set; } | ||
} | ||
} |
Oops, something went wrong.