Vote

data class Vote(val id: Long = 0, var sujetId: Long = 0, var nomVotant: String = "", var note: Int = 0)

Un vote pour un sujet.

Parameters

id

l'id du vote.

sujetId

l'id du sujet sur lequel on vote.

nomVotant

le nom du votant qui devra être unique pour cette question.

note

la note entre 0 et 5.

Constructors

Link copied to clipboard
constructor(sujetId: Long, nomVotant: String, note: Int)

Constructeur d'un Vote à utiliser.

constructor(id: Long = 0, sujetId: Long = 0, nomVotant: String = "", note: Int = 0)

Properties

Link copied to clipboard
val id: Long = 0
Link copied to clipboard
Link copied to clipboard
var note: Int
Link copied to clipboard