using Markdig.Syntax.Inlines;
namespace OliverBooth.Markdown.Timestamp;
///
/// Represents a Markdown inline element that contains a timestamp.
///
public sealed class TimestampInline : Inline
{
///
/// Gets or sets the format.
///
/// The format.
public TimestampFormat Format { get; set; }
///
/// Gets or sets the timestamp.
///
/// The timestamp.
public DateTimeOffset Timestamp { get; set; }
}