23 lines
379 B
C#
23 lines
379 B
C#
// Copyright (c) 2023 schick Informatik
|
|
// Description: Interfaces to simplify dialog handling
|
|
//
|
|
|
|
using BreCalClient.misc.Model;
|
|
|
|
|
|
namespace BreCalClient
|
|
{
|
|
internal interface IEditTimesControl
|
|
{
|
|
Times Times { get; set; }
|
|
|
|
string Title { get; set; }
|
|
|
|
ShipcallControlModel ShipcallModel { get; set; }
|
|
|
|
bool? ShowDialog();
|
|
|
|
}
|
|
|
|
}
|