Represents a semester, including its start and end dates, associated corps, and additional notes.

Semester

interface Semester {
    _id?: string;
    corpsId: string;
    createdAt: DateTime;
    deleted: boolean;
    end: DateTime;
    notes: string;
    start: DateTime;
    updatedAt: DateTime;
}

Hierarchy (View Summary)

Properties

_id?: string
corpsId: string

The identifier for the corps associated with the semester.

createdAt: DateTime
deleted: boolean
end: DateTime

The end date and time of the semester.

notes: string

Additional notes or information about the semester.

start: DateTime

The start date and time of the semester.

updatedAt: DateTime