source: src/FinkiChattery/FinkiChattery.Persistence/Repositories/Contracts/Student/StudentSelfDto.cs@ 2a9d9d1

dev
Last change on this file since 2a9d9d1 was 2a9d9d1, checked in by Стојков Марко <mst@…>, 3 years ago

Set correct answer for question by question owner

  • Property mode set to 100644
File size: 924 bytes
Line 
1using System;
2using System.Collections.Generic;
3
4namespace FinkiChattery.Persistence.Repositories.Contracts
5{
6 public class StudentSelfDto
7 {
8 public StudentSelfDto(Guid uid, long applicationUserId, string index, long reputation, string imageUrl, IEnumerable<StudentQuestionDto> questions, IEnumerable<StudentTeamDto> teams)
9 {
10 Uid = uid;
11 ApplicationUserId = applicationUserId;
12 Index = index;
13 Reputation = reputation;
14 ImageUrl = imageUrl;
15 Questions = questions;
16 Teams = teams;
17 }
18
19 public Guid Uid { get; }
20 public long ApplicationUserId { get; }
21 public string Index { get; }
22 public long Reputation { get; }
23 public string ImageUrl { get; }
24 public IEnumerable<StudentQuestionDto> Questions { get; }
25 public IEnumerable<StudentTeamDto> Teams { get; }
26 }
27}
Note: See TracBrowser for help on using the repository browser.