add project
This commit is contained in:
16
Pilz.Updating/UpdateNotes.cs
Normal file
16
Pilz.Updating/UpdateNotes.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SM64_ROM_Manager.Updating
|
||||
{
|
||||
public class UpdateNotes
|
||||
{
|
||||
public string Content { get; set; }
|
||||
[JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
|
||||
public UpdateNotesContentType ContentType { get; set; } = UpdateNotesContentType.PlainText;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user