WIP setting up new data project structure and event handlers
This commit is contained in:
15
BrightGlimmer.Domain/Student.cs
Normal file
15
BrightGlimmer.Domain/Student.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace BrightGlimmer.Domain
|
||||
{
|
||||
public class Student : Entity
|
||||
{
|
||||
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