This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class YTitleIDCollection | |
| { | |
| public string videoId { get; set; } | |
| public string title { get; set; } | |
| } | |
| class JSON_PlaylistItems | |
| { | |
| public string nextPageToken; | |
| public Item[] items; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using MySql.Data.MySqlClient; | |
| namespace MediaProviderWorker.Helpers.Database | |
| { | |
| class MysqlConnectionData | |
| { | |
| public string Server { get { return _server; }set { _server = value; } } | |
| public string Port { get { return _port; }set { _port = value; } } | |
| public string Db { get { return _db; }set { _db = value; } } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.Globalization; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Text.RegularExpressions; | |
| using System.Threading; | |
| using System.Threading.Tasks; |
NewerOlder