ProSol.Html.TagsProvider/src/Contracts/Data/TagsProviderMessage.cs
Alexander Kozachenko fc19e6e4e1 Release v1.0.2
- moved folders around
- provided readme
2023-11-07 16:51:25 +03:00

12 lines
400 B
C#

using System.Collections.Immutable;
namespace ProSol.Html.Contracts.Data;
/// <summary>
/// Represents a push-notification from <see cref="TagsProvider"/>
/// </summary>
/// <param name="TagsHistory">Current branch of tags tree.</param>
/// <param name="CurrentTag">Current tag.</param>
public record class TagsProviderMessage(
ImmutableArray<TagInfo> TagsHistory,
ProcessedTag CurrentTag);