forked from liza/Questionable
11 lines
247 B
C#
11 lines
247 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Questionable.Model.Questing;
|
|
|
|
public sealed class SinglePlayerDutyOptions
|
|
{
|
|
public bool Enabled { get; set; }
|
|
public List<string> Notes { get; set; } = [];
|
|
public byte Index { get; set; }
|
|
}
|