Added TTS Voice & TTS Voice State data classes. Renamed certain classes. Fixed some compiler warnings.

This commit is contained in:
Tom
2025-01-17 04:38:03 +00:00
parent 78bab88165
commit e7a3b2a367
20 changed files with 70 additions and 55 deletions

View File

@ -2,12 +2,13 @@ namespace HermesSocketLibrary.Socket.Data
{
public class Connection
{
public string Name { get; set; }
public string Type { get; set; }
public string ClientId { get; set; }
public string AccessToken { get; set; }
public string GrantType { get; set; }
public string Scope { get; set; }
public required string UserId { get; set; }
public required string Name { get; set; }
public required string Type { get; set; }
public required string ClientId { get; set; }
public required string AccessToken { get; set; }
public required string GrantType { get; set; }
public required string Scope { get; set; }
public DateTime ExpiresAt { get; set; }
public bool Default { get; set; }
}