Skip to content
Snippets Groups Projects
Commit 3101686e authored by pnogal's avatar pnogal
Browse files

Add files

parent 2ed4c5f8
No related branches found
No related tags found
No related merge requests found
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
], ],
"styles": [ "styles": [
"src/assets/material-theme.scss", "src/assets/material-theme.scss",
"src/assets/sass/general.scss",
"src/styles.css" "src/styles.css"
], ],
"scripts": [ "scripts": [
......
import { BrowserModule } from '@angular/platform-browser'; import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { HttpClientModule } from '@angular/common/http';
import { AppRoutingModule } from './app.routing.module'; import { AppRoutingModule } from './app.routing.module';
import { AppComponent } from './app.component'; import { AppComponent } from './app.component';
import { CoreModule } from './core/core.module'; import { CoreModule } from './core/core.module';
import { SharedModule } from './shared/shared.module'; import { SharedModule } from './shared/shared.module';
import { DegreePlannerModule } from './degree-planner/degree-planner.module'; import { DegreePlannerModule } from './degree-planner/degree-planner.module';
import { ConfigService } from './core/config.service';
@NgModule({ @NgModule({
imports: [ imports: [
...@@ -15,10 +17,11 @@ import { DegreePlannerModule } from './degree-planner/degree-planner.module'; ...@@ -15,10 +17,11 @@ import { DegreePlannerModule } from './degree-planner/degree-planner.module';
DegreePlannerModule, DegreePlannerModule,
CoreModule, CoreModule,
SharedModule, SharedModule,
AppRoutingModule AppRoutingModule,
HttpClientModule
], ],
declarations: [ declarations: [
AppComponent, AppComponent
], ],
providers: [], providers: [],
bootstrap: [ AppComponent ], bootstrap: [ AppComponent ],
......
export interface Course {
id: number;
courseId: string;
termCode: string;
topicId: number;
title: string;
subjectCode: string;
catalogNumber: string;
credits: number;
creditMin: number;
creditMax: number;
grade: any;
classNumber: string;
courseOrder: number;
honors: string;
waitlist: string;
relatedClassNumber1: any;
relatedClassNumber2: any;
classPermissionNumber: any;
sessionCode: any;
validationResults: any[];
enrollmentResults: any[];
pendingEnrollments: any[];
details: any;
classMeetings: any;
enrollmentOptions: any;
packageEnrollmentStatus?: any;
creditRange: any;
}
export interface TermContainer {
termCode: string;
}
body {
margin: 0px;
}
.text-right {
text-align: right;
}
.semi-bold {
font-weight: 700;
}
\ No newline at end of file
/* You can add global styles to this file, and also import other style files */ /* You can add global styles to this file, and also import other style files */
body { \ No newline at end of file
margin: 0px;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment