11 lines
354 B
C#
11 lines
354 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Kreta.Resources;
|
|
|
|
namespace Kreta.Web.Areas.Adatszolgaltatasok.Models
|
|
{
|
|
public class OkosmeroEnergetikaiAdatSearchModel
|
|
{
|
|
[Display(Name = nameof(CommonResource.Feladatellatasihely), ResourceType = typeof(CommonResource))]
|
|
public int? FeladatellatasiHely { get; set; }
|
|
}
|
|
}
|