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:
parent
aab1fad4e2
commit
7f08d72ef8
23 changed files with 638 additions and 83 deletions
|
|
@ -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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue