mirror of
https://gitee.com/xiarenalofs/squad-rain-ops-mini.git
synced 2026-08-06 13:26:25 +08:00
18 lines
417 B
C#
18 lines
417 B
C#
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;
|
|
}
|
|
}
|