using UnityEngine; namespace RND { public class RewardButtonsSection : BaseRewardSection { [SerializeField] private RewardButton _rewardButton = null; protected override RewardButton RewardButton => _rewardButton; } }