-
-
Notifications
You must be signed in to change notification settings - Fork 44
sharedlibrarycoreinterfaces IClientMeta
RaidMax edited this page May 21, 2023
·
1 revision
describes all the base attributes of a client meta object
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Interfaces
SharedLibraryCore.Interfaces.IClientMeta[[IClientMeta]]
class SharedLibraryCore.Interfaces.IClientMeta interfaceStyle;
end
Type | Name | Methods |
---|---|---|
Nullable <int > |
Column |
get, set |
bool |
IsSensitive |
get |
Nullable <int > |
Order |
get, set |
bool |
ShouldDisplay |
get |
MetaType |
Type |
get |
DateTime |
When |
get |
describes all the base attributes of a client meta object
public MetaType Type { get; }
public DateTime When { get; }
public bool IsSensitive { get; }
public bool ShouldDisplay { get; }
public Nullable<int> Column { get; set; }
public Nullable<int> Order { get; set; }
Generated with ModularDoc