Interface ICsAttributes
Interface that determines if a c# model has attributes assigned.
Namespace: CodeFactory.WinVs.Models.CSharp
Assembly: CodeFactory.WinVs.dll
Syntax
public interface ICsAttributes
Properties
Attributes
The attributes assigned to this item. If the HasAttributes is false this will be an empty list.
Declaration
IReadOnlyList<CsAttribute> Attributes { get; }
Property Value
Type | Description |
---|---|
IReadOnlyList<CsAttribute> |
HasAttributes
Flag that determines if attributes are assigned.
Declaration
bool HasAttributes { get; }
Property Value
Type | Description |
---|---|
bool |