18 lines
368 B
C#
18 lines
368 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Marco.Pms.Model.Projects;
|
|
|
|
namespace Marco.Pms.Model.ViewModels
|
|
{
|
|
public class InfraVM
|
|
{
|
|
public Building? building { get; set; }
|
|
public Floor? floor { get; set; }
|
|
|
|
public WorkArea workArea { get; set; }
|
|
}
|
|
}
|