13 lines
380 B
C#
13 lines
380 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Kreta.Web.Security;
|
|
|
|
namespace Kreta.Web.Areas.Intezmeny.Models
|
|
{
|
|
public class TeremBerbeadhatoStatuszValtozasModel
|
|
{
|
|
public string KretaIntezmenyAzonosito => ClaimData.IntezmenyAzonosito;
|
|
public List<string> Varosok { get; set; }
|
|
public DateTime ModositasIdopontja => DateTime.Now;
|
|
}
|
|
}
|