using System; using System.Collections.Generic; namespace FinkiChattery.Persistence.Repositories.Contracts { public class TeacherSelfDto { public TeacherSelfDto(Guid uid, long applicationUserId, IEnumerable teams) { Uid = uid; ApplicationUserId = applicationUserId; Teams = teams; } public Guid Uid { get; } public long ApplicationUserId { get; } public IEnumerable Teams { get; } } }