Address PR comments

This commit is contained in:
Amelia 2025-06-14 16:14:11 +02:00
parent 21fc91262c
commit ea2549fdf2
No known key found for this signature in database
GPG key ID: D6D0ECE365407EAA
5 changed files with 18 additions and 18 deletions

View file

@ -1,4 +1,5 @@
using System.Collections.Generic;
using System.ComponentModel;
using API.Entities.Enums;
using API.Entities.Enums.UserPreferences;
@ -6,9 +7,13 @@ namespace API.Entities;
public enum BreakPoint
{
[Description("Never")]
Never = 0,
[Description("Mobile")]
Mobile = 1,
[Description("Tablet")]
Tablet = 2,
[Description("Desktop")]
Desktop = 3,
}