9 lines
204 B
C#
9 lines
204 B
C#
namespace Ficdown.Parser.Model.Parser
|
|
{
|
|
public class Orphan
|
|
{
|
|
public string Type { get; set; }
|
|
public string Name { get; set; }
|
|
public int LineNumber { get; set; }
|
|
}
|
|
}
|