Class SelektionsFeldValue
Represents a value for a SelektionsFeld
public record SelektionsFeldValue : IEquatable<SelektionsFeldValue>
- Inheritance
-
objectSelektionsFeldValue
- Implements
Constructors
SelektionsFeldValue(string, string, object?)
Represents a value for a SelektionsFeld
public SelektionsFeldValue(string Name, string Bez, object? Value)
Parameters
NamestringName of the DB field
BezstringReadable name of the field
ValueobjectValue of the field
Properties
Bez
Readable name of the field
public string Bez { get; init; }
Property Value
Name
Name of the DB field
public string Name { get; init; }
Property Value
Value
Value of the field
public object? Value { get; init; }
Property Value
- object