10 lines
231 B
C#
10 lines
231 B
C#
namespace Marco.Pms.Model.Dtos.Project
|
|
{
|
|
public class InfraDot
|
|
{
|
|
public BuildingDot? Building { get; set; }
|
|
public FloorDot? Floor { get; set; }
|
|
public WorkAreaDot? WorkArea { get; set; }
|
|
}
|
|
}
|