2023-12-30 04:27:31 -05:00
|
|
|
public class Account {
|
2024-03-12 14:05:27 -04:00
|
|
|
public string Id { get; set; }
|
|
|
|
public string Username { get; set; }
|
2024-08-06 15:29:29 -04:00
|
|
|
public string Role { get; set; }
|
|
|
|
public string? BroadcasterId { get; set; }
|
2023-12-30 04:27:31 -05:00
|
|
|
}
|