123456789101112131415161718192021 |
- // Author: Orlys
- // Github: https://github.com/Orlys
- namespace Yuuna.Contracts.Patterns
- {
- using System;
- using System.Collections.Immutable;
- using Yuuna.Contracts.Semantics;
- using Yuuna.Common.Linq;
- using Yuuna.Contracts.Plugins;
- public interface IPattern : IEquatable<IPattern>, IImmutable<IGroup>
- {
- PluginBase Owner { get; }
- int Count { get; }
- IImmutableList<string> SequentialKeys { get; }
- }
- }
|