Files
iMES_Net/iMES.Core/Enums/UserAgent.cs

15 lines
212 B
C#
Raw Normal View History

2026-02-06 18:34:35 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace iMES.Core.Enums
{
public enum UserAgent
{
IOS = 0,
Android = 1,
Windows = 2,
Linux
}
}