1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
namespace MediaBrowser.Model.Library { /// <summary> /// The play access of an item. /// </summary> public enum PlayAccess { /// <summary> /// The item can be played. /// </summary> Full = 0, /// <summary> /// The item cannot be played. /// </summary> None = 1 } }