feat: add fnOS packaging, storage workflows and release pipeline

This commit is contained in:
2026-08-11 18:05:49 +08:00
parent c5922f9b08
commit 95932f0199
181 changed files with 24024 additions and 1164 deletions
+46
View File
@@ -145,5 +145,51 @@ namespace dy.net.model.entity
/// </summary>
[SugarColumn(Length = 500, IsNullable = true)]
public string SeriesPath { get; set; }
[SugarColumn(Length = 1000, IsNullable = true)]
public string WebDavCollectPath { get; set; }
[SugarColumn(Length = 1000, IsNullable = true)]
public string WebDavFavoritePath { get; set; }
[SugarColumn(Length = 1000, IsNullable = true)]
public string WebDavFollowPath { get; set; }
[SugarColumn(Length = 1000, IsNullable = true)]
public string WebDavMixPath { get; set; }
[SugarColumn(Length = 1000, IsNullable = true)]
public string WebDavSeriesPath { get; set; }
public int ConsecutiveSourceForbidden { get; set; }
[SugarColumn(IsNullable = true)]
public DateTime? SourceCooldownUntil { get; set; }
public bool SourceRequiresAuthorization { get; set; }
public bool SourceProbePending { get; set; }
public bool SourceProbeInProgress { get; set; }
[SugarColumn(IsNullable = true)]
public int? LastSourceStatusCode { get; set; }
[SugarColumn(Length = 1000, IsNullable = true)]
public string LastSourceError { get; set; }
[SugarColumn(IsNullable = true)]
public DateTime? SourceHealthUpdatedAt { get; set; }
public int ConsecutiveLiveCheckFailures { get; set; }
[SugarColumn(IsNullable = true)]
public DateTime? LiveCheckCooldownUntil { get; set; }
[SugarColumn(Length = 1000, IsNullable = true)]
public string LastLiveCheckError { get; set; }
[SugarColumn(IsNullable = true)]
public DateTime? LiveCheckHealthUpdatedAt { get; set; }
}
}