Setup ef core tools and sqlite database with some entities
This commit is contained in:
16
BrightGlimmer.Data/Domain/Student.cs
Normal file
16
BrightGlimmer.Data/Domain/Student.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace BrightGlimmer.Data.Domain
|
||||
{
|
||||
public class Student
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public string FirstName { get; set; }
|
||||
public string MiddleName { get; set; }
|
||||
public string LastName { get; set; }
|
||||
public string Email { get; set; }
|
||||
public List<Phone> Phones { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user