-
-
Notifications
You must be signed in to change notification settings - Fork 44
sharedlibrarycoredtosmetaresponses BaseMetaResponse
RaidMax edited this page May 21, 2023
·
1 revision
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Dtos.Meta.Responses
SharedLibraryCore.Dtos.Meta.Responses.BaseMetaResponse[[BaseMetaResponse]]
end
subgraph SharedLibraryCore.Interfaces
SharedLibraryCore.Interfaces.IClientMeta[[IClientMeta]]
class SharedLibraryCore.Interfaces.IClientMeta interfaceStyle;
SharedLibraryCore.Interfaces.IClientMetaResponse[[IClientMetaResponse]]
class SharedLibraryCore.Interfaces.IClientMetaResponse interfaceStyle;
end
SharedLibraryCore.Interfaces.IClientMeta --> SharedLibraryCore.Dtos.Meta.Responses.BaseMetaResponse
SharedLibraryCore.Interfaces.IClientMetaResponse --> SharedLibraryCore.Dtos.Meta.Responses.BaseMetaResponse
Type | Name | Methods |
---|---|---|
int |
ClientId |
get, set |
Nullable <int > |
Column |
get, set |
bool |
IsSensitive |
get, set |
long |
MetaId |
get, set |
Nullable <int > |
Order |
get, set |
bool |
ShouldDisplay |
get, set |
MetaType |
Type |
get, set |
DateTime |
When |
get, set |
public BaseMetaResponse()
public MetaType Type { get; set; }
public DateTime When { get; set; }
public bool IsSensitive { get; set; }
public bool ShouldDisplay { get; set; }
public virtual Nullable<int> Column { get; set; }
public virtual Nullable<int> Order { get; set; }
public long MetaId { get; set; }
public int ClientId { get; set; }
Generated with ModularDoc