namespace VersOne.Epub
{
///
/// The location of a single EPUB content file (e.g. a chapter or an image).
///
public enum EpubContentLocation
{
///
/// Content file is located inside the EPUB file.
///
LOCAL = 1,
///
/// Content file is located outside the EPUB file and available via an absolute URI.
///
REMOTE
}
}