mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 01:34:45 +03:00
Add GPL modules
This commit is contained in:
22
MediaBrowser.Model/IO/IIsoMount.cs
Normal file
22
MediaBrowser.Model/IO/IIsoMount.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Model.IO
|
||||
{
|
||||
/// <summary>
|
||||
/// Interface IIsoMount
|
||||
/// </summary>
|
||||
public interface IIsoMount : IDisposable
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the iso path.
|
||||
/// </summary>
|
||||
/// <value>The iso path.</value>
|
||||
string IsoPath { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the mounted path.
|
||||
/// </summary>
|
||||
/// <value>The mounted path.</value>
|
||||
string MountedPath { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user