19 lines
642 B
C#
19 lines
642 B
C#
using System;
|
|
|
|
namespace Kreta.Eugyintezes.Domain.Model.Dto
|
|
{
|
|
public class BulkAlkalmazottDto
|
|
{
|
|
public int KretaAzonosito { get; set; }
|
|
public string EgyediAzonosito { get; set; }
|
|
public Guid IdpEgyediAzonosito { get; set; }
|
|
public bool IsIgazgato { get; set; }
|
|
public bool IsIgazgatoHelyettes { get; set; }
|
|
public bool IsOsztalyfonok { get; set; }
|
|
public bool IsOsztalyfonokHelyettes { get; set; }
|
|
public bool IsAdmin { get; set; }
|
|
public bool IsTanar { get; set; }
|
|
public string Nev { get; set; }
|
|
public EmailDto Email { get; set; }
|
|
}
|
|
}
|