14 lines
322 B
C#
14 lines
322 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Kreta.Web.Areas.Intezmeny.Models
|
|
{
|
|
public class SetHetirendModel
|
|
{
|
|
public SetHetirendModel()
|
|
{
|
|
ModifiedHetirendList = new Dictionary<int, int?>();
|
|
}
|
|
|
|
public Dictionary<int, int?> ModifiedHetirendList { get; set; }
|
|
}
|
|
}
|