Manually specify enum order.

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

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

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

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

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

Loading…
Cancel
Save