11 lines
294 B
C#
11 lines
294 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Kreta.Client.KozpontiKreta.Model
|
|
{
|
|
public class KotelezoOraszamRequestModel
|
|
{
|
|
public string IntezmenyAzonosito { get; set; }
|
|
public int TanevId { get; set; }
|
|
public List<int> AlkalmazottLista { get; set; }
|
|
}
|
|
}
|