11 lines
240 B
C#
11 lines
240 B
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Project.Tasks.Editor
|
|
{
|
|
internal sealed class TaskBoardOwnersConfig : ScriptableObject
|
|
{
|
|
public List<string> owners = new List<string> { "unassigned" };
|
|
}
|
|
}
|