Refactored a bunch of things

Added Notes Module + Data Structure
Added Config Module + Data Structure
Added Role Buttons Module + Data Structure
This commit is contained in:
pan.codes 2024-04-12 02:25:32 +02:00
parent aab1fad4e2
commit 7f08d72ef8
23 changed files with 638 additions and 83 deletions

View file

@ -0,0 +1,14 @@
using System.Xml.Serialization;
namespace SMSModLogOutputAnalyzer.Data
{
public partial class RoleButtonsDataObject
{
public class RoleButton
{
[XmlAttribute] public int Id { get; set; }
[XmlAttribute] public ulong Role { get; set; }
[XmlAttribute] public ulong RequiredRole { get; set; }
}
}
}