dbwizard/Models/Program.cs

15 lines
262 B
C#
Raw Permalink Normal View History

2020-04-26 23:25:28 -04:00
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; }
}
}