fasdfsa's picture
init
fab29d7
namespace VersOne.Epub.Schema
{
/// <summary>
/// <para>Version of the SMIL specification to which the given media overlay document conforms.</para>
/// <para>
/// See <see href="https://www.w3.org/TR/epub-33/#sec-smil-smil-elem" /> for more information.
/// </para>
/// </summary>
public enum SmilVersion
{
/// <summary>
/// <para>Corresponds to version 3.0 of the SMIL specification.</para>
/// <para>See <see href="https://www.w3.org/TR/SMIL3/" /> for more information.</para>
/// </summary>
SMIL_3 = 3
}
}