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

11 lines
264 B
C#

using ProSol.Html.Contracts.Data;
namespace ProSol.Html.Data;
/// <summary>
/// Represents an opened tag, when there is incomplete data about it.
/// </summary>
internal record class UnprocessedTag(
TagInfo TagInfo,
int TagOffset,
int? InnerOffset);