using System;

namespace Com.ForbiddenByte.OSA.Demos.DifferentPrefabPerOrientation.Models
{
    /// <summary>
    /// The model is the same for both prefabs
    /// </summary>
    public class CommonModel
    {
        public string Title;
        public string Content;
    }
}
