15 lines
270 B
C#
15 lines
270 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace skyscraper2.TsDuckInterface.Processors
|
|
{
|
|
class HistoryProcessor : TspProcessor
|
|
{
|
|
public override string ToString()
|
|
{
|
|
return "history";
|
|
}
|
|
}
|
|
}
|