8 lines
238 B
C#
8 lines
238 B
C#
|
[Serializable]
|
||
|
public class TwitchConnection {
|
||
|
public string id { get; set; }
|
||
|
public string secret { get; set; }
|
||
|
public string broadcasterId { get; set; }
|
||
|
public string username { get; set; }
|
||
|
public string userId { get; set; }
|
||
|
}
|