using System; using System.Collections.Generic; namespace Kreta.Naplo.Domain.V3.OsztalyCsoport { public class OsztalyokCsoportokResponse { public int OsztalyCsoportId { get; set; } public string OsztalyCsoportNev { get; set; } public bool IsTanitom { get; set; } public Guid? OsztalyfonokCsoportvezetoUid { get; set; } public string OsztalyfonokCsoportvezetoNev { get; set; } public Guid? OsztalyfonokHelyettesUid { get; set; } public string OsztalyfonokHelyettesNev { get; set; } } }