mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-09 22:55:00 -05:00
18 lines
394 B
C#
18 lines
394 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Net;
|
|
using System.IO;
|
|
|
|
namespace MediaBrowser.ApiInteraction.Portable
|
|
{
|
|
public class ApiClient : BaseApiClient
|
|
{
|
|
private HttpWebRequest GetNewRequest(string url)
|
|
{
|
|
HttpWebRequest request = HttpWebRequest.CreateHttp(url);
|
|
}
|
|
}
|
|
}
|