Class TitleMapping
Implements
Inherited Members
Namespace: CrashCABN.Gateway
Assembly: CrashCABN.TitleMapping.Abstractions.dll
Syntax
public record TitleMapping : IEquatable<TitleMapping>
Constructors
View SourceTitleMapping(string, bool, bool, bool)
Declaration
public TitleMapping(string Secret, bool PushToV1, bool PushToV2, bool DevOnly)
Parameters
Type | Name | Description |
---|---|---|
string | Secret | The name that the title is known by. |
bool | PushToV1 | True if crashes should be pushed to V1. |
bool | PushToV2 | True if crashes should be pushed to V2. |
bool | DevOnly | True if only dev crashes should be pushed. |
Properties
View SourceDevOnly
True if only dev crashes should be pushed.
Declaration
public bool DevOnly { get; init; }
Property Value
Type | Description |
---|---|
bool |
PushToV1
True if crashes should be pushed to V1.
Declaration
public bool PushToV1 { get; init; }
Property Value
Type | Description |
---|---|
bool |
PushToV2
True if crashes should be pushed to V2.
Declaration
public bool PushToV2 { get; init; }
Property Value
Type | Description |
---|---|
bool |
Secret
The name that the title is known by.
Declaration
public string Secret { get; init; }
Property Value
Type | Description |
---|---|
string |