mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-27 04:16:47 +00:00
update project targets
This commit is contained in:
parent
f676ea6315
commit
3094cd7ff3
29 changed files with 12206 additions and 307 deletions
9
MediaBrowser.Model/TextEncoding/IEncoding.cs
Normal file
9
MediaBrowser.Model/TextEncoding/IEncoding.cs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
namespace MediaBrowser.Model.TextEncoding
|
||||
{
|
||||
public interface IEncoding
|
||||
{
|
||||
byte[] GetASCIIBytes(string text);
|
||||
string GetASCIIString(byte[] bytes, int startIndex, int length);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue