2023-12-30 09:27:31 +00:00
|
|
|
public class Account {
|
2024-03-12 18:05:27 +00:00
|
|
|
public string Id { get; set; }
|
|
|
|
public string Username { get; set; }
|
2024-08-06 19:29:29 +00:00
|
|
|
public string Role { get; set; }
|
2024-08-12 19:45:17 +00:00
|
|
|
public string BroadcasterId { get; set; }
|
2023-12-30 09:27:31 +00:00
|
|
|
}
|