Files
Pilz.Updating/Pilz.Updating/UpdateNotes.cs
Schedel Pascal d0048e008d more refactoring
2024-06-24 07:49:24 +02:00

17 lines
490 B
C#

using Newtonsoft.Json;
namespace Pilz.Updating;
public class UpdateNotes
{
[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;
}