more refactoring

This commit is contained in:
Schedel Pascal
2024-06-24 07:49:24 +02:00
parent 77ddd2a72a
commit d0048e008d
124 changed files with 170 additions and 10678 deletions

View File

@@ -4,7 +4,13 @@ namespace Pilz.Updating;
public class UpdateNotes
{
public string Content { get; set; }
[JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public UpdateNotesMode Mode { get; set; } = UpdateNotesMode.None;
public string ExternalUrl { get; set; }
public string ContentUrl { get; set; }
[JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public UpdateNotesContentType ContentType { get; set; } = UpdateNotesContentType.PlainText;
}