// Copyright (C) 2026, The Duplicati Team // https://duplicati.com, hello@duplicati.com // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. #nullable enable using System; using System.Collections.Generic; using Duplicati.Server.Serialization.Interface; namespace Duplicati.Server.Database { /// /// Represents an additional target URL entry for a backup. /// Used by RemoteSynchronizationModule for remote sync destinations. /// public class TargetUrlEntry : ITargetUrlEntry { /// /// The database ID (internal use only) /// public long ID { get; set; } /// /// The backup ID this target URL belongs to /// public long BackupID { get; set; } /// /// The unique key for this target URL entry (UUID, user-facing identifier) /// public string TargetUrlKey { get; set; } = ""; /// /// The target URL (encrypted when stored in database) /// public string TargetUrl { get; set; } = ""; /// /// The synchronization mode: inline, interval, or counting /// public string Mode { get; set; } = "inline"; /// /// The interval for interval mode (e.g., "1h", "30m") /// public string? Interval { get; set; } /// /// The connection string ID for this target URL (if applicable) /// public long ConnectionStringID { get; set; } /// /// Additional options as a JSON object (auto-create-folders, backend-retries, etc.) /// public Dictionary? Options { get; set; } /// /// The creation timestamp /// public DateTime CreatedAt { get; set; } /// /// The last update timestamp /// public DateTime UpdatedAt { get; set; } } }