18 lines
381 B
C#
18 lines
381 B
C#
///
|
|
/// Copyright (c) 2019 Sensus Slovensko a.s.
|
|
///
|
|
using Config.Entities;
|
|
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
{
|
|
/// <summary>
|
|
/// Backup and security options
|
|
/// </summary>
|
|
public interface IBackupAndSecurity : IComponent
|
|
{
|
|
int MinPasswdLength { get; }
|
|
int PasswdExpirationPeriodDays { get; }
|
|
}
|
|
}
|