18 lines
394 B
C#
18 lines
394 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AiSportsMicrospaceDB.Entities
|
|
{
|
|
public class BasicConfig
|
|
{
|
|
// ✅ 主键
|
|
public int Id { get; set; }
|
|
public string Host { get; set; }
|
|
public string UserName { get; set; }
|
|
public string Password { get; set; }
|
|
}
|
|
}
|