using System; namespace API.DTOs.Stats; /// /// This is just for the Server tab on UI /// public class ServerInfoSlimDto { /// /// Unique Id that represents a unique install /// public required string InstallId { get; set; } /// /// If the Kavita install is using Docker /// public bool IsDocker { get; set; } /// /// Version of Kavita /// public required string KavitaVersion { get; set; } /// /// The Date Kavita was first installed /// public DateTime? FirstInstallDate { get; set; } /// /// The Version of Kavita on the first run /// public string? FirstInstallVersion { get; set; } }