using System; using System.Collections.Generic; using System.Text; namespace FinalyProject { public class Stage { private bool _isSpecial; private StageLevel _stageLevel; public bool IsSpecial => _isSpecial; public StageLevel StageLevel => _stageLevel; public Stage(bool isSpecial, StageLevel stageLevel) { _isSpecial = isSpecial; _stageLevel = StageLevel; } } }