Class IdentifierAndNameModel
- Namespace
- CSF.Screenplay.ReportModel
- Assembly
- CSF.Screenplay.dll
Model represents an IdentifierAndName within a Screenplay report.
public class IdentifierAndNameModel
- Inheritance
-
IdentifierAndNameModel
- Inherited Members
Remarks
Like many models in this namespace, this type mimicks a first-class part of the Screenplay architecture. This model type is intended for use with the serialization process to JSON. Many of the properties of these types will correspond directly with the same-named properties on the original Screenplay architecture types.
Properties
Id
Corresponds to the value Identifier.
public string Id { get; set; }
Property Value
IsGeneratedId
Corresponds to the value WasIdentifierAutoGenerated.
public bool IsGeneratedId { get; set; }
Property Value
Name
Corresponds to the value Name.
public string Name { get; set; }