// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) VRMADA, All rights reserved. // // -------------------------------------------------------------------------------------------------------------------- using System; using UnityEngine; namespace UltimateXR.Editor.Readme { public partial class UxrReadme { [Serializable] public class Section { #region Inspector Properties/Serialized Fields [SerializeField] private string _heading; [SerializeField] private string _text; [SerializeField] private string _linkText; [SerializeField] private string _url; #endregion #region Public Types & Data /// /// Gets the heading. /// public string Heading => _heading; /// /// Gets the main text. /// public string Text => _text; /// /// Gets the link text. /// public string LinkText => _linkText; /// /// Gets the link URL. /// public string URL => _url; #endregion } } }