14 lines
333 B
C#
14 lines
333 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WGneu.Models {
|
|
[Table("branch"), PrimaryKey("ZwstId")]
|
|
public class Branch {
|
|
[Column("zwstid")]
|
|
public string ZwstId { get; set; }
|
|
|
|
[Column("name")]
|
|
public string Name { get; set; }
|
|
}
|
|
}
|