Setup ef core tools and sqlite database with some entities

This commit is contained in:
Giovani
2019-04-20 00:39:07 +00:00
parent 3ed561ba0a
commit 382beefdc3
17 changed files with 424 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace BrightGlimmer.Data.Domain
{
public enum PhoneType
{
HOMEPHONE, CELLPHONE, WORKPHONE
}
}