using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WebWindowComplex
{
public class AreaProfiles
{
///
/// Numero di area
///
public int GroupId { get; set; }
///
/// Numero di anta (se è una sash)
///
public int EntId { get; set; }
///
/// Lista profili
///
public List Profiles { get; set; }
public AreaProfiles(int groupId, int entityId, List profiles)
{
GroupId = groupId;
EntId = entityId;
Profiles = profiles;
}
}
}