Files
xCommons/Constants/XDeviceType.cs
T
2024-01-25 04:39:39 +03:30

11 lines
219 B
C#

namespace xCommons.Constants {
/// <summary>
/// a collection of available Client Devices
/// </summary>
public enum XDeviceType {
Unknown,
Mobile,
Tablet,
Desktop
}
}