Class BackOfficeTourFile
A model representing the file used to load a tour.
Inheritance
System.Object
Namespace: Umbraco.Cms.Core.Models
Assembly: Umbraco.Core.dll
Syntax
[DataContract(Name = "tourFile", Namespace = "")]
public class BackOfficeTourFile
Constructors
View SourceBackOfficeTourFile()
Declaration
public BackOfficeTourFile()
Properties
View SourceFileName
The file name for the tour
Declaration
[DataMember(Name = "fileName")]
public string FileName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
PluginName
The plugin folder that the tour comes from
Declaration
[DataMember(Name = "pluginName")]
public string PluginName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
If this is null it means it's a Core tour
Tours
Declaration
[DataMember(Name = "tours")]
public IEnumerable<BackOfficeTour> Tours { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<BackOfficeTour> |