deterministicHashCode
This commit is contained in:
@ -33,9 +33,19 @@ public interface IId
|
||||
static short GetSortOrderOnlyLengthIndex(int offset) =>
|
||||
(short)(offset.ToString().Length + 3);
|
||||
|
||||
NameWithoutExtension TestStatic_GetNameWithoutExtension(IMetadataConfiguration configuration, string file) =>
|
||||
GetNameWithoutExtension(configuration, file);
|
||||
static NameWithoutExtension GetNameWithoutExtension(IMetadataConfiguration configuration, string file) =>
|
||||
Id.GetNameWithoutExtension(configuration, file);
|
||||
FilePath TestStatic_GetFilePath(FilePath filePath, string file) =>
|
||||
GetFilePath(filePath, file);
|
||||
static FilePath GetFilePath(FilePath filePath, string file) =>
|
||||
Id.GetFilePath(filePath, file);
|
||||
|
||||
FilePath TestStatic_GetFilePath(IMetadataConfiguration configuration, string file) =>
|
||||
GetFilePath(configuration, file);
|
||||
static FilePath GetFilePath(IMetadataConfiguration configuration, string file) =>
|
||||
Id.GetFilePath(configuration, file);
|
||||
|
||||
int TestStatic_GetDeterministicHashCode(byte[] value) =>
|
||||
GetDeterministicHashCode(value);
|
||||
static int GetDeterministicHashCode(byte[] value) =>
|
||||
Id.GetDeterministicHashCode(value);
|
||||
|
||||
}
|
9
Shared/Models/Stateless/Methods/IRename.cs
Normal file
9
Shared/Models/Stateless/Methods/IRename.cs
Normal file
@ -0,0 +1,9 @@
|
||||
namespace View_by_Distance.Shared.Models.Stateless.Methods;
|
||||
|
||||
public interface IRename
|
||||
{
|
||||
|
||||
string[]? ConvertAndGetFfmpegFiles(FilePath filePath);
|
||||
DeterministicHashCode GetDeterministicHashCode(FilePath filePath);
|
||||
|
||||
}
|
Reference in New Issue
Block a user