13 lines
262 B
C#
13 lines
262 B
C#
using Marco.Pms.Model.Projects;
|
|
|
|
namespace Marco.Pms.Model.ViewModels.Projects
|
|
{
|
|
public class InfraVM
|
|
{
|
|
public Building? building { get; set; }
|
|
public Floor? floor { get; set; }
|
|
|
|
public WorkArea? workArea { get; set; }
|
|
}
|
|
}
|