WIP Member List
This commit is contained in:
20
WGneu/Models/AT_Gem.cs
Normal file
20
WGneu/Models/AT_Gem.cs
Normal file
@ -0,0 +1,20 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WGneu.Models
|
||||
{
|
||||
[Table("AT_gem"), PrimaryKey("Gkz")]
|
||||
public class AT_Gem
|
||||
{
|
||||
[Column("gkz")]
|
||||
public int Gkz { get; set; }
|
||||
|
||||
[Column("name")]
|
||||
public String Name { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user