9 lines
202 B
C#
9 lines
202 B
C#
namespace DiscordBotWebUI.Models;
|
|
|
|
public class PluginModel
|
|
{
|
|
public string PluginName { get; set; }
|
|
public string PluginAuthor { get; set; }
|
|
public string PluginDescription { get; set; }
|
|
}
|