Files
QuickLook/QuickLook.Plugin/VersOne.Epub/Schema/Opf/EpubGuideReference.cs
2018-07-16 09:46:52 +02:00

17 lines
357 B
C#

using System;
namespace VersOne.Epub.Schema
{
public class EpubGuideReference
{
public string Type { get; set; }
public string Title { get; set; }
public string Href { get; set; }
public override string ToString()
{
return String.Format("Type: {0}, Href: {1}", Type, Href);
}
}
}