TimePasses/Model/Replacement.cs

12 lines
273 B
C#

using YamlDotNet.Serialization;
namespace TimePasses.Model;
[Serializable]
internal class Replacement {
public uint Id { get; init; }
public ReplacementText? Text { get; init; }
public bool Slowly { get; init; }
public IWhen[] When { get; init; } = [];
}