Setup ef core tools and sqlite database with some entities
This commit is contained in:
14
BrightGlimmer.Data/Domain/Phone.cs
Normal file
14
BrightGlimmer.Data/Domain/Phone.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace BrightGlimmer.Data.Domain
|
||||
{
|
||||
public class Phone
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public PhoneType Type { get; set; }
|
||||
public int AreaCode { get; set; }
|
||||
public int Number { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user