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