Class BugCreationViewModelData
Class used to hold information about the bug creation view model.
Inheritance
BugCreationViewModelData
Assembly: Phoenix.Plugin.Aruba.dll
Syntax
public class BugCreationViewModelData : IBugCreationViewModelData
Properties
View Source
Attachments
Declaration
public List<string> Attachments { get; }
Property Value
View Source
BugID
Declaration
public Guid BugID { get; }
Property Value
View Source
Fields
Declaration
public List<FieldModel> Fields { get; }
Property Value
View Source
GameDevices
Declaration
public IBugDevices GameDevices { get; }
Property Value
View Source
LinkedBugItems
Declaration
public List<(string BugKey, string BugLinkType)> LinkedBugItems { get; }
Property Value
View Source
MapFieldNameToImages
Declaration
public Dictionary<string, IEnumerable<Image>> MapFieldNameToImages { get; }
Property Value
View Source
TabName
Declaration
public string TabName { get; }
Property Value
View Source
Declaration
public List<string> Tags { get; }
Property Value
View Source
TemplateID
Declaration
public Guid TemplateID { get; }
Property Value
View Source
Tokens
Declaration
public List<(string ResolverName, string TokenName, List<ResolvedTokenizedItem> ResolvedTokenizedItems)> Tokens { get; }
Property Value
Methods
View Source
GetData(string, Guid, Guid, IBugDevices, IEnumerable<FieldModel>, IEnumerable<string>, IEnumerable<(string ResolverName, string TokenName, List<ResolvedTokenizedItem> ResolvedValue)>, IEnumerable<string>, IEnumerable<(string BugKey, string BugLinkType)>, Dictionary<string, IEnumerable<Image>>)
Declaration
public static BugCreationViewModelData GetData(string bugTabName, Guid templateID, Guid bugID, IBugDevices bugDevices, IEnumerable<FieldModel> fields, IEnumerable<string> attachments, IEnumerable<(string ResolverName, string TokenName, List<ResolvedTokenizedItem> ResolvedValue)> tokens, IEnumerable<string> tags, IEnumerable<(string BugKey, string BugLinkType)> linkedBugItems, Dictionary<string, IEnumerable<Image>> mapFieldNameToImages)
Parameters
Returns
Implements