using System;
using System.Collections.Generic;
using System.Text;
namespace LibGit2Sharp
{
///
/// Represents a line with line number and content.
///
public struct Line
{
///
/// The line number of the original line in the blob.
///
public int LineNumber { get; }
///
/// The content of the line in the original blob.
///
public string Content { get; }
internal Line(int lineNumber, string content)
{
LineNumber = lineNumber;
Content = content;
}
}
}