-
-
Notifications
You must be signed in to change notification settings - Fork 44
datamodels SharedEntity
RaidMax edited this page May 21, 2023
·
1 revision
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph Data.Models
Data.Models.SharedEntity[[SharedEntity]]
end
subgraph Data.Abstractions
Data.Abstractions.IPropertyExtender[[IPropertyExtender]]
class Data.Abstractions.IPropertyExtender interfaceStyle;
end
Data.Abstractions.IPropertyExtender --> Data.Models.SharedEntity
Type | Name | Methods |
---|---|---|
bool |
Active indicates if the entity is active |
get, set |
Returns | Name |
---|---|
void |
CopyAdditionalProperties (SharedEntity source) |
T |
GetAdditionalProperty (string name) |
void |
SetAdditionalProperty (string name, object value) |
public SharedEntity()
public virtual T GetAdditionalProperty<T>(string name)
where T :
Type | Name | Description |
---|---|---|
string |
name |
public virtual void SetAdditionalProperty(string name, object value)
Type | Name | Description |
---|---|---|
string |
name | |
object |
value |
public void CopyAdditionalProperties(SharedEntity source)
Type | Name | Description |
---|---|---|
SharedEntity |
source |
public bool Active { get; set; }
indicates if the entity is active
Generated with ModularDoc