Files
RuvdsTest/src/Domain/Features/CreateQuestion.fs
danamir 942dfc9c1a Initial commit: standalone quiz-testing system
Full-stack F# (Domain/Server/Client via Fable+Elmish+Feliz), PostgreSQL
persistence via Dapper, Docker Compose deployment. Student quiz-taking flow
with time-limit enforcement and focus-loss tracking, Teacher question bank
and quiz builder with results analytics, Admin user management.
2026-08-06 12:36:16 +03:00

10 lines
163 B
Forth

namespace Domain.Contracts
open Domain
type CreateQuestionRequest =
{ TopicId: TopicId
Text: string
Points: float
Type: QuestionTypeView }