Files
LanMountainDesktop/LanMontainDesktop/Views/Components/IDesktopComponentWidget.cs
lincube 5dc2d680fb 0.2.3
小白板,天气,时钟
2026-03-03 04:56:04 +08:00

19 lines
409 B
C#

using LanMontainDesktop.Services;
namespace LanMontainDesktop.Views.Components;
public interface IDesktopComponentWidget
{
void ApplyCellSize(double cellSize);
}
public interface ITimeZoneAwareComponentWidget
{
void SetTimeZoneService(TimeZoneService timeZoneService);
}
public interface IWeatherInfoAwareComponentWidget
{
void SetWeatherInfoService(IWeatherInfoService weatherInfoService);
}