
* Version bump * Okay this should be the last (#2037) * Fixed improper date visualization for reading list detail page. * Correct not-read badge position (#2034) --------- Co-authored-by: Andre Smith <Hobogrammer@users.noreply.github.com> * Bump versions by dotnet-bump-version. * Merged develop in --------- Co-authored-by: Andre Smith <Hobogrammer@users.noreply.github.com>
13 lines
210 B
C#
13 lines
210 B
C#
using System.ComponentModel;
|
|
|
|
namespace API.Entities.Enums;
|
|
|
|
public enum EncodeFormat
|
|
{
|
|
[Description("PNG")]
|
|
PNG = 0,
|
|
[Description("WebP")]
|
|
WEBP = 1,
|
|
[Description("AVIF")]
|
|
AVIF = 2
|
|
}
|