mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Use different interface name
This commit is contained in:
@@ -5,7 +5,7 @@ using SabreTools.IO.Logging;
|
||||
|
||||
namespace SabreTools.FileTypes
|
||||
{
|
||||
public abstract class BaseArchive : BaseFile, IFolder
|
||||
public abstract class BaseArchive : BaseFile, IParent
|
||||
{
|
||||
#region Protected instance variables
|
||||
|
||||
|
||||
@@ -177,7 +177,7 @@ namespace SabreTools.FileTypes
|
||||
/// </summary>
|
||||
/// <param name="outputFormat">OutputFormat representing the archive to create</param>
|
||||
/// <returns>IFolder object representing the inputs</returns>
|
||||
public static IFolder? CreateFolderType(OutputFormat outputFormat)
|
||||
public static IParent? CreateFolderType(OutputFormat outputFormat)
|
||||
{
|
||||
return outputFormat switch
|
||||
{
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace SabreTools.FileTypes
|
||||
/// <summary>
|
||||
/// Represents a folder for reading and writing
|
||||
/// </summary>
|
||||
public class Folder : BaseFile, IFolder
|
||||
public class Folder : BaseFile, IParent
|
||||
{
|
||||
#region Protected instance variables
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ namespace SabreTools.FileTypes
|
||||
/// <summary>
|
||||
/// Represents an item that can contain children
|
||||
/// </summary>
|
||||
public interface IFolder
|
||||
public interface IParent
|
||||
{
|
||||
#region Extraction
|
||||
|
||||
Reference in New Issue
Block a user