10 lines
156 B
C#
Raw Normal View History

2024-07-09 18:03:05 -05:00
using DAL.Models;
namespace API.Hashing.Interfaces
{
public interface IHashingFactory
{
public IHashingAlgorithm? getAlgorithm(HashingType type);
}
}