Manually specify enum order.

This commit is contained in:
Patrick Barron 2020-07-17 20:03:17 -04:00
parent 1ac1186312
commit 10f531bbe4
4 changed files with 9 additions and 9 deletions

View File

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

View File

@ -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
}
}

View File

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

View File

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