mirror of https://github.com/ogoun/Zero.git
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.
25 lines
508 B
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;
|
|
}
|
|
}
|
|
} |