source: src/FinkiChattery/FinkiChattery.Persistence/Repositories/Contracts/Teacher/TeacherSelfDto.cs

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

Set correct answer for question by question owner

  • Property mode set to 100644
File size: 518 bytes
Line 
1using System;
2using System.Collections.Generic;
3
4namespace FinkiChattery.Persistence.Repositories.Contracts
5{
6 public class TeacherSelfDto
7 {
8 public TeacherSelfDto(Guid uid, long applicationUserId, IEnumerable<TeacherTeamDto> teams)
9 {
10 Uid = uid;
11 ApplicationUserId = applicationUserId;
12 Teams = teams;
13 }
14
15 public Guid Uid { get; }
16 public long ApplicationUserId { get; }
17 public IEnumerable<TeacherTeamDto> Teams { get; }
18 }
19}
Note: See TracBrowser for help on using the repository browser.