8 lines
243 B
C#
8 lines
243 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; }
|
||
|
}
|