15 lines
297 B
C#
15 lines
297 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace ChaosBot.Models
|
|
{
|
|
public partial class ServerConfigurationFlag
|
|
{
|
|
public string Key { get; set; }
|
|
public string SerializedValue { get; set; }
|
|
public long? GuildId { get; set; }
|
|
}
|
|
}
|