// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) VRMADA, All rights reserved.
//
// --------------------------------------------------------------------------------------------------------------------
using System;
using UnityEngine;
namespace UltimateXR.Editor.Readme
{
public partial class UxrReadme
{
[Serializable]
public class Credit
{
#region Inspector Properties/Serialized Fields
[SerializeField] private string _name;
[SerializeField] private string _role;
#endregion
#region Public Types & Data
///
/// Gets the name.
///
public string Name => _name;
///
/// Gets the role.
///
public string Role => _role;
#endregion
}
}
}