2024-07-16 04:48:55 +00:00
|
|
|
using TwitchChatTTS.Chat.Emotes;
|
|
|
|
|
2024-03-12 18:05:27 +00: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 07:50:17 +00:00
|
|
|
public string EmoteSetId { get; set; }
|
2024-03-12 18:05:27 +00:00
|
|
|
public EmoteSet EmoteSet { get; set; }
|
2024-06-17 00:19:31 +00:00
|
|
|
public SevenUser User { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public class SevenUser
|
|
|
|
{
|
|
|
|
public string Id { get; set; }
|
|
|
|
public string Username { get; set; }
|
2024-03-12 18:05:27 +00:00
|
|
|
}
|
|
|
|
}
|