2024-07-16 00:48:55 -04:00
|
|
|
using TwitchChatTTS.Chat.Emotes;
|
|
|
|
|
2024-03-12 14:05:27 -04:00
|
|
|
namespace TwitchChatTTS.Seven
|
|
|
|
{
|
|
|
|
public class UserDetails
|
|
|
|
{
|
|
|
|
public string Id { get; set; }
|
|
|
|
public string Platform { get; set; }
|
|
|
|
public string Username { get; set; }
|
|
|
|
public int EmoteCapacity { get; set; }
|
2024-10-22 03:50:17 -04:00
|
|
|
public string EmoteSetId { get; set; }
|
2024-03-12 14:05:27 -04:00
|
|
|
public EmoteSet EmoteSet { get; set; }
|
2024-06-16 20:19:31 -04:00
|
|
|
public SevenUser User { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public class SevenUser
|
|
|
|
{
|
|
|
|
public string Id { get; set; }
|
|
|
|
public string Username { get; set; }
|
2024-03-12 14:05:27 -04:00
|
|
|
}
|
|
|
|
}
|