using System.ComponentModel; namespace API.Entities.Enums; /// /// Represents the writing styles for the book-reader /// public enum WritingStyle { /// /// Horizontal writing style for the book-reader /// [Description ("Horizontal")] Horizontal = 0, /// /// Vertical writing style for the book-reader /// [Description ("Vertical")] Vertical = 1 }