mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-13 19:19:10 +00:00
23 lines
459 B
C#
23 lines
459 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace VersOne.Epub
|
|
{
|
|
public class EpubTextContentFileRef : EpubContentFileRef
|
|
{
|
|
public EpubTextContentFileRef(EpubBookRef epubBookRef)
|
|
: base(epubBookRef)
|
|
{
|
|
}
|
|
|
|
public string ReadContent()
|
|
{
|
|
return ReadContentAsText();
|
|
}
|
|
|
|
public Task<string> ReadContentAsync()
|
|
{
|
|
return ReadContentAsTextAsync();
|
|
}
|
|
}
|
|
}
|