ChouBox/ChouBox.Model/Entities/Config.cs
2025-04-23 19:20:23 +08:00

14 lines
237 B
C#

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
public partial class Config
{
public int Id { get; set; }
public string Key { get; set; } = null!;
public string? Value { get; set; }
}