17 lines
301 B
C#
17 lines
301 B
C#
using System;
|
|
using System.Drawing;
|
|
|
|
namespace TBF.UiControls
|
|
{
|
|
public interface ICameraPicture
|
|
{
|
|
Image NewImage { set; }
|
|
|
|
string Caption { get; set; }
|
|
Image Image { get; set; }
|
|
DateTime TimeStamp { get; set; }
|
|
|
|
void UpdateLed(DateTime now);
|
|
}
|
|
}
|