9 lines
157 B
C#
9 lines
157 B
C#
|
namespace Ficdown.Parser.Model.Parser
|
||
|
{
|
||
|
public class Line
|
||
|
{
|
||
|
public int Number { get; set; }
|
||
|
public string Text { get; set; }
|
||
|
}
|
||
|
}
|