This repository has been archived on 2025-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
BreCal/src/BreCalClient/IEditTimesControl.cs

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();
}
}