mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-12 10:53:57 +00:00
5ad19ffbdb
Android version 1.0.5
12 lines
261 B
C#
12 lines
261 B
C#
using System;
|
|
namespace qController
|
|
{
|
|
public class QInfo
|
|
{
|
|
public string version { get; set; }
|
|
public string displayName { get; set; }
|
|
public string uniqueID { get; set; }
|
|
public bool hasPasscode { get; set; }
|
|
}
|
|
}
|