dev
Last change
on this file since b9d7ae5 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 | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 |
|
---|
4 | namespace 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.