20 lines
416 B
C#
20 lines
416 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Kreta.Core.Domain
|
|
{
|
|
public abstract class KirAlkalmazottBase
|
|
{
|
|
[JsonIgnore]
|
|
public string SzuletesiNev { get; set; }
|
|
|
|
[JsonIgnore]
|
|
public string AnyjaNeve { get; set; }
|
|
|
|
[JsonIgnore]
|
|
public DateTime? SzuletesiDatum { get; set; }
|
|
|
|
[JsonIgnore]
|
|
public string SzuletesiHely { get; set; }
|
|
}
|
|
}
|