12 lines
256 B
C#
12 lines
256 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; } = new List<string>();
|
|
|
|
public byte Index { get; set; }
|
|
}
|