mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-15 14:15:54 -06:00
22 lines
492 B
C#
22 lines
492 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Text;
|
|
|
|
namespace PhotoFrame.Logic.Config
|
|
{
|
|
public class FrameConfigChangedEventArgs {}
|
|
|
|
public interface IFrameConfig
|
|
{
|
|
event EventHandler<FrameConfigChangedEventArgs> FrameConfigChanged;
|
|
|
|
List<Color> BorderColors { get; }
|
|
uint BorderWidth { get; }
|
|
|
|
TimeSpan PhotoShowTime { get; }
|
|
string PhotosPath { get; }
|
|
|
|
bool ShowDebugInfo { get; }
|
|
}
|
|
}
|