You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/DOM/Model/Flow/Quote.cs

25 lines
508 B

using ZeroLevel.Services.Serialization;
namespace ZeroLevel.DocumentObjectModel.Flow
{
public sealed class Quote :
Text
{
public Quote()
{
_type = ContentElementType.Quote;
}
public Quote(string text)
{
_type = ContentElementType.Quote;
Value = text;
}
public Quote(IBinaryReader reader)
{
Deserialize(reader);
_type = ContentElementType.Quote;
}
}
}

Powered by TurnKey Linux.