Files
yavsc/SalesCatalog/Model/Note.cs
Paul Schneider 04804b89a9 Initial import
2014-07-16 20:35:03 +02:00

14 lines
173 B
C#

using System;
namespace SalesCatalog.Model
{
public class Note:Text
{
public override string ToHtml ()
{
return string.Format("<quote>{0}</quote>",Val);
}
}
}