This repository was archived by the owner on Apr 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTapKey.cs
86 lines (68 loc) · 1.86 KB
/
TapKey.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
namespace KeyTap
{
[JsonObject(MemberSerialization.OptIn)]
public class TapKey : IComparable, IComparable<TapKey>, IEquatable<TapKey>
{
#region Data
[JsonProperty]
public string Provider { get; }
[JsonProperty]
public string Icon { get; }
[JsonProperty]
public string Device { get; }
[JsonProperty]
public string Id { get; }
[JsonProperty]
public string Name { get; }
#endregion
#region Constructors
public TapKey(
string provider,
string icon,
string device = "Local",
string id = "Default",
string name = "Default")
{
Provider = provider;
Icon = icon;
Device = device;
Id = id;
Name = name;
}
#endregion
#region Methods
public int CompareTo(TapKey other)
{
if (other is null) return 1;
return GetHashCode().CompareTo(other.GetHashCode());
}
public bool Equals(TapKey other)
{
return other != null && GetHashCode() == other.GetHashCode();
}
public override string ToString()
{
return $"{Provider}.{Device}.{Id}";
}
public override int GetHashCode()
{
return ToString().GetHashCode();
}
public int CompareTo(object obj)
{
if (obj is null) return 1;
return GetHashCode().CompareTo(obj.GetHashCode());
}
public override bool Equals(object obj)
{
return obj != null && GetHashCode() == obj.GetHashCode();
}
#endregion
}
}