Table of Contents

Class SelektionsFeldValue

Namespace
BpNexT.NET.Models
Assembly
BpNexT.NET.dll

Represents a value for a SelektionsFeld

public record SelektionsFeldValue : IEquatable<SelektionsFeldValue>
Inheritance
object
SelektionsFeldValue
Implements

Constructors

SelektionsFeldValue(string, string, object?)

Represents a value for a SelektionsFeld

public SelektionsFeldValue(string Name, string Bez, object? Value)

Parameters

Name string

Name of the DB field

Bez string

Readable name of the field

Value object

Value of the field

Properties

Bez

Readable name of the field

public string Bez { get; init; }

Property Value

string

Name

Name of the DB field

public string Name { get; init; }

Property Value

string

Value

Value of the field

public object? Value { get; init; }

Property Value

object