mirror of
https://gitee.com/xiarenalofs/squad-rain-ops-mini.git
synced 2026-08-10 23:11:56 +08:00
Initial commit: add RainOpsMini project and documentation
This commit is contained in:
17
Models/PluginConfigEntity.cs
Normal file
17
Models/PluginConfigEntity.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using SqlSugar;
|
||||
using System;
|
||||
|
||||
namespace RainOpsMini.Models
|
||||
{
|
||||
[SugarTable("PluginConfigs")]
|
||||
public class PluginConfigEntity
|
||||
{
|
||||
[SugarColumn(IsPrimaryKey = true)]
|
||||
public string PluginName { get; set; } = null!;
|
||||
|
||||
[SugarColumn(ColumnDataType = "TEXT")]
|
||||
public string JsonContent { get; set; } = "{}";
|
||||
|
||||
public DateTime UpdatedAt { get; set; } = DateTime.UtcNow;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user