using System.Collections.Generic; using UnityEngine; namespace Project.Tasks.Editor { internal sealed class TaskBoardOwnersConfig : ScriptableObject { public List owners = new List { "unassigned" }; } }