19 lines
685 B
C#
19 lines
685 B
C#
namespace Marco.Pms.Model.MongoDBModels
|
|
{
|
|
public class ProjectMongoDB
|
|
{
|
|
public string? Id { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? ShortName { get; set; }
|
|
public string? ProjectAddress { get; set; }
|
|
public string? ContactPerson { get; set; }
|
|
public List<BuildingMongoDB>? Buildings { get; set; }
|
|
public DateTime? StartDate { get; set; }
|
|
public DateTime? EndDate { get; set; }
|
|
public StatusMasterMongoDB? ProjectStatus { get; set; }
|
|
public int TeamSize { get; set; }
|
|
public double CompletedWork { get; set; }
|
|
public double PlannedWork { get; set; }
|
|
}
|
|
}
|