File size: 589 Bytes
fab29d7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
    }
}