mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-17 14:05:09 +00:00
17 lines
491 B
C#
17 lines
491 B
C#
// Copyright (c) Alexandre Mutel. All rights reserved.
|
|
// This file is licensed under the BSD-Clause 2 license.
|
|
// See the license.txt file in the project root for more information.
|
|
using System.Diagnostics;
|
|
using Markdig.Syntax.Inlines;
|
|
|
|
namespace Markdig.Extensions.TaskLists
|
|
{
|
|
/// <summary>
|
|
/// An inline for TaskList.
|
|
/// </summary>
|
|
[DebuggerDisplay("TaskList {Checked}")]
|
|
public class TaskList : LeafInline
|
|
{
|
|
public bool Checked { get; set; }
|
|
}
|
|
} |