Files
modernkeepass/ModernKeePass/Interfaces/ISelectableModel.cs
Geoffroy Bonneville d10f617910 Major changes in MainPage: now is layout dependant (with a base, to prepare for Settings)
Main sub pages also changed to better work with Main (but needs improvement)
Added a Settings Page stub
2017-11-08 14:42:44 +01:00

7 lines
129 B
C#

namespace ModernKeePass.Interfaces
{
public interface ISelectableModel
{
bool IsSelected { get; set; }
}
}