decePubClient/Models/Types/ContentType.cs

8 lines
102 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-15 00:08:41 +01:00
PlainText = 1,
2022-02-14 01:51:52 +01:00
HTML,
Markdown
2022-02-14 01:51:37 +01:00
}