Files
webwindowconfigurator/WebWindowComplex/AreaProfiles.cs
T
2026-08-12 17:28:47 +02:00

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;
}
}
}