15 lines
212 B
C#
15 lines
212 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace iMES.Core.Enums
|
|
{
|
|
public enum UserAgent
|
|
{
|
|
IOS = 0,
|
|
Android = 1,
|
|
Windows = 2,
|
|
Linux
|
|
}
|
|
}
|