namespace DocFx.Plugin.LastModified;
using System;
public record LastModifiedInfo
{
///
/// Gets the last modified date of the file.
///
public DateTimeOffset LastModified { get; init; }
///
/// Gets the commit header, if any.
///
public string CommitHeader { get; init; } = string.Empty;
///
/// Gets the commit body, if any.
///
public string CommitBody { get; init; } = string.Empty;
}