TimePasses/Model/Replacement.cs

12 lines
273 B
C#
Raw Permalink Normal View History

2024-06-21 15:27:36 +00:00
using YamlDotNet.Serialization;
2024-06-17 17:25:46 +00:00
namespace TimePasses.Model;
[Serializable]
internal class Replacement {
public uint Id { get; init; }
2024-06-21 15:27:36 +00:00
public ReplacementText? Text { get; init; }
2024-06-17 17:25:46 +00:00
public bool Slowly { get; init; }
public IWhen[] When { get; init; } = [];
}