mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 07:44:48 +01:00
10 lines
192 B
C#
10 lines
192 B
C#
using System.Text;
|
|
|
|
namespace MediaBrowser.Model.Text
|
|
{
|
|
public interface ITextEncoding
|
|
{
|
|
Encoding GetASCIIEncoding();
|
|
Encoding GetFileEncoding(string path);
|
|
}
|
|
}
|