Spg.BasicDemo/Model/Student.cs

17 lines
426 B
C#
Raw Permalink Normal View History

2022-09-26 16:37:42 +02:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Spg.BasicDemo.Model {
public class Student {
[Key]
public string FirstName { get; set; }
public string LastName { get; set; }
public long SozNumber { get; set; }
2022-09-26 17:09:14 +02:00
public int Id { get; internal set; }
2022-09-26 16:37:42 +02:00
}
}