1 sharedlibrarycoredtosmetaresponses BaseMetaResponse
RaidMax edited this page 2023-05-20 22:09:21 -05:00

BaseMetaResponse Public class

Diagram

  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

Members

Properties

Public properties

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

Details

Inheritance

Constructors

BaseMetaResponse

Source code

public BaseMetaResponse()

Properties

Type

public MetaType Type { get; set; }

When

public DateTime When { get; set; }

IsSensitive

public bool IsSensitive { get; set; }

ShouldDisplay

public bool ShouldDisplay { get; set; }

Column

public virtual Nullable<int> Column { get; set; }

Order

public virtual Nullable<int> Order { get; set; }

MetaId

public long MetaId { get; set; }

ClientId

public int ClientId { get; set; }

Generated with ModularDoc