15 lines
313 B
C#
15 lines
313 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CloudBuilder.CodeGenerator.Data
|
|
{
|
|
public class SysTable
|
|
{
|
|
public string Selected { get; set; } = null!;
|
|
public string TableName { get; set; } = null!;
|
|
}
|
|
}
|