1 sharedlibrarycoreinterfaces IClientMeta
RaidMax edited this page 2023-05-20 22:09:21 -05:00

IClientMeta Public interface

Description

describes all the base attributes of a client meta object

Diagram

  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

Members

Properties

Public properties

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

Details

Summary

describes all the base attributes of a client meta object

Properties

Type

public MetaType Type { get; }

When

public DateTime When { get; }

IsSensitive

public bool IsSensitive { get; }

ShouldDisplay

public bool ShouldDisplay { get; }

Column

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

Order

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

Generated with ModularDoc