Manually specify enum order.

pull/3578/head
Patrick Barron 4 years ago
parent 1ac1186312
commit 10f531bbe4

@ -8,11 +8,11 @@
/// <summary> /// <summary>
/// Stable Chromecast version. /// Stable Chromecast version.
/// </summary> /// </summary>
Stable, Stable = 0,
/// <summary> /// <summary>
/// Nightly Chromecast version. /// Nightly Chromecast version.
/// </summary> /// </summary>
Nightly Nightly = 2
} }
} }

@ -5,16 +5,16 @@
/// <summary> /// <summary>
/// Index by the premiere date. /// Index by the premiere date.
/// </summary> /// </summary>
PremiereDate, PremiereDate = 0,
/// <summary> /// <summary>
/// Index by the production year. /// Index by the production year.
/// </summary> /// </summary>
ProductionYear, ProductionYear = 1,
/// <summary> /// <summary>
/// Index by the community rating. /// Index by the community rating.
/// </summary> /// </summary>
CommunityRating CommunityRating = 2
} }
} }

@ -8,11 +8,11 @@
/// <summary> /// <summary>
/// Horizontal scrolling direction. /// Horizontal scrolling direction.
/// </summary> /// </summary>
Horizontal, Horizontal = 0,
/// <summary> /// <summary>
/// Vertical scrolling direction. /// Vertical scrolling direction.
/// </summary> /// </summary>
Vertical Vertical = 1
} }
} }

@ -8,11 +8,11 @@
/// <summary> /// <summary>
/// Sort in increasing order. /// Sort in increasing order.
/// </summary> /// </summary>
Ascending, Ascending = 0,
/// <summary> /// <summary>
/// Sort in decreasing order. /// Sort in decreasing order.
/// </summary> /// </summary>
Descending Descending = 1
} }
} }

Loading…
Cancel
Save