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.
43 lines
1.3 KiB
43 lines
1.3 KiB
using ZeroLevel.Services.Serialization;
|
|
|
|
namespace ZeroLevel.DocumentObjectModel
|
|
{
|
|
public class Agency : IBinarySerializable
|
|
{
|
|
/// <summary>
|
|
/// Название источника
|
|
/// </summary>
|
|
public string Title;
|
|
/// <summary>
|
|
/// Ссылка на источник
|
|
/// </summary>
|
|
public string Url;
|
|
/// <summary>
|
|
/// Описание источника
|
|
/// </summary>
|
|
public string Description;
|
|
|
|
public Agency() { }
|
|
public Agency(IBinaryReader reader) { Deserialize(reader); }
|
|
public Agency(string title) { this.Title = title; }
|
|
public Agency(string title, string url) { this.Title = title; this.Url = url; }
|
|
public Agency(string title, string url, string description) { this.Title = title; this.Url = url; this.Description = description; }
|
|
|
|
#region IBinarySerializable
|
|
public void Serialize(IBinaryWriter writer)
|
|
{
|
|
writer.WriteString(this.Title);
|
|
writer.WriteString(this.Url);
|
|
writer.WriteString(this.Description);
|
|
}
|
|
|
|
public void Deserialize(IBinaryReader reader)
|
|
{
|
|
this.Title = reader.ReadString();
|
|
this.Url = reader.ReadString();
|
|
this.Description = reader.ReadString();
|
|
}
|
|
#endregion
|
|
}
|
|
}
|