mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-10 17:29:08 +00:00
10 lines
238 B
C#
10 lines
238 B
C#
namespace VersOne.Epub
|
|
{
|
|
public abstract class EpubContentFile
|
|
{
|
|
public string FileName { get; set; }
|
|
public EpubContentType ContentType { get; set; }
|
|
public string ContentMimeType { get; set; }
|
|
}
|
|
}
|