mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 05:33:20 +01:00
14 lines
306 B
C#
14 lines
306 B
C#
|
|
namespace MediaBrowser.Controller.Library
|
|
{
|
|
public class DeleteOptions
|
|
{
|
|
public bool DeleteFileLocation { get; set; }
|
|
public bool DeleteFromExternalProvider { get; set; }
|
|
|
|
public DeleteOptions()
|
|
{
|
|
DeleteFromExternalProvider = true;
|
|
}
|
|
}
|
|
}
|