dbwizard/Models/Program.cs
2020-04-26 20:25:28 -07:00

15 lines
262 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DBWizard.Models
{
public class Program
{
public int program_id { get; }
public string name { get; }
}
}