feat: 初始化NewLife Studio项目,完成基础框架与数据管理模块
何炳宏 authored at 2026-05-26 12:09:09
421.00 B
NewLife.Studio
namespace NewLife.Studio.Core.DTOs;

/// <summary>连接配置信息</summary>
public class ConnectionInfo
{
    public string Id { get; set; } = Guid.NewGuid().ToString("N");
    public string Name { get; set; } = "";
    public string ConnectionString { get; set; } = "";
    public string ProviderType { get; set; } = "sqlite";
    public DateTime LastUsedAt { get; set; }
    public string Group { get; set; } = "";
}