mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-04 16:10:16 -04:00
12 lines
352 B
C#
12 lines
352 B
C#
![]() |
using System.Collections.Generic;
|
|||
|
using ModernKeePass.Domain.Entities;
|
|||
|
|
|||
|
namespace ModernKeePass.Application.Common.Interfaces
|
|||
|
{
|
|||
|
public interface IDatabaseSettingsProxy
|
|||
|
{
|
|||
|
IEnumerable<BaseEntity> Ciphers { get; }
|
|||
|
IEnumerable<BaseEntity> KeyDerivations { get; }
|
|||
|
IEnumerable<string> CompressionAlgorithms { get; }
|
|||
|
}
|
|||
|
}
|