11 lines
219 B
C#
11 lines
219 B
C#
namespace xCommons.Constants {
|
|
/// <summary>
|
|
/// a collection of available Client Devices
|
|
/// </summary>
|
|
public enum XDeviceType {
|
|
Unknown,
|
|
Mobile,
|
|
Tablet,
|
|
Desktop
|
|
}
|
|
} |