using System;
namespace CodonCreation
{
///
/// A custom class that will be created by the TestDoozer.
///
///
/// SharpDevelop2 now uses custom Doozers instead of custom codons (as
/// in SharpDevelop 1.x).
///
public class TestCodon
{
string text = String.Empty;
public TestCodon(string text)
{
this.text = text;
}
public string Text {
get {
return text;
}
}
}
}