20 lines
518 B
C#
20 lines
518 B
C#
// <auto-generated> This file has been auto generated by EF Core Power Tools. </auto-generated>
|
|
#nullable enable
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace fgs.database.Models;
|
|
|
|
[Table("Reader")]
|
|
public partial class Reader
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
[StringLength(150)]
|
|
[Unicode(false)]
|
|
public string ReaderId { get; set; } = null!;
|
|
} |