DXStudentComment

Represents an instance of a DX student comment.

public struct DXStudentComment: Codable {
  
  public let commentId: String
  public let student: DXProfile
  public let author: DXProfile
  public var course: String?
  public var lesson: String?
  public let `class`: String
  public let text: String
}

Last updated