15 lines
501 B
C#
15 lines
501 B
C#
using Kreta.BusinessLogic.Interfaces;
|
|
|
|
namespace Kreta.Web.Areas.Tantargy.Models
|
|
{
|
|
public class SZIRAdatszolgGridModel : IKretaIdentity
|
|
{
|
|
public string ID { get; set; }
|
|
public int FeladatellatasiHelyId { get; set; }
|
|
public string FeladatellatasiHelyNev { get; set; }
|
|
public int OkostelefonSzama { get; set; }
|
|
public int TabletSzama { get; set; }
|
|
public int NotebookSzama { get; set; }
|
|
public int AsztaliGepSzama { get; set; }
|
|
}
|
|
}
|