29 lines
635 B
C#
29 lines
635 B
C#
|
|
namespace WebWindowComplex
|
|
{
|
|
public class AreaProfiles
|
|
{
|
|
/// <summary>
|
|
/// Numero di area
|
|
/// </summary>
|
|
public int GroupId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Numero di anta (se è una sash)
|
|
/// </summary>
|
|
public int EntId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Lista profili
|
|
/// </summary>
|
|
public List<string> Profiles { get; set; }
|
|
|
|
public AreaProfiles(int groupId, int entityId, List<string> profiles)
|
|
{
|
|
GroupId = groupId;
|
|
EntId = entityId;
|
|
Profiles = profiles;
|
|
}
|
|
}
|
|
}
|