Laservall_manager_system/LM.Core/Enums/UserAgent.cs

15 lines
210 B
C#
Raw Normal View History

2025-09-25 14:37:10 +08:00
using System;
using System.Collections.Generic;
using System.Text;
2025-10-09 16:26:44 +08:00
namespace LM.Core.Enums
2025-09-25 14:37:10 +08:00
{
public enum UserAgent
{
IOS = 0,
Android = 1,
Windows = 2,
Linux
}
}