CalDav synchronizer, new IMAP setup/edit page.

This commit is contained in:
Burak Kaan Köse
2026-02-15 02:20:18 +01:00
parent 64b9bfc392
commit acf0f649e8
58 changed files with 3993 additions and 1732 deletions
@@ -0,0 +1,11 @@
using System;
namespace Wino.Core.Domain.Models.Calendar;
public sealed class CalDavConnectionSettings
{
public Uri ServiceUri { get; init; }
public string Username { get; init; } = string.Empty;
public string Password { get; init; } = string.Empty;
}