Spg.BasicDemo/Model/Student.cs
2022-09-26 16:37:42 +02:00

16 lines
381 B
C#

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; }
}
}