using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Text; namespace BrightGlimmer.Domain { [Table("Courses")] public class Course : Entity { public string Name { get; set; } public string Description { get; set; } public string Code { get; set; } } }