decePubClient/Models/Types/ContentType.cs

8 lines
98 B
C#
Raw Normal View History

2022-02-14 01:51:37 +01:00
namespace decePubClient.Models.Types;
2022-02-14 01:51:52 +01:00
public enum ContentType
2022-02-14 01:51:37 +01:00
{
2022-02-14 01:51:52 +01:00
PlainText,
HTML,
Markdown
2022-02-14 01:51:37 +01:00
}