Class BugFilerField
Inheritance
BugFilerField
Assembly: CrashCABN.BugFiler.Abstractions.dll
Syntax
public sealed record BugFilerField : IEquatable<BugFilerField>
Constructors
View Source
BugFilerField(string, bool, string, IEnumerable<string>)
Declaration
public BugFilerField(string Name, bool IsRequired, string DefaultValue, IEnumerable<string> AllowedValues)
Parameters
Properties
View Source
AllowedValues
Declaration
public IEnumerable<string> AllowedValues { get; init; }
Property Value
View Source
DefaultValue
Declaration
public string DefaultValue { get; init; }
Property Value
View Source
IsRequired
Declaration
public bool IsRequired { get; init; }
Property Value
View Source
Name
Declaration
public string Name { get; init; }
Property Value
Implements