27 lines
1.0 KiB
C#
27 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class SC_TotalCGSeatsAcrossProject
|
|
{
|
|
public Nullable<System.Guid> ScenarioId { get; set; }
|
|
public Nullable<System.DateTime> WeekEndingDate { get; set; }
|
|
public Nullable<decimal> Quantity { get; set; }
|
|
public Nullable<decimal> Cost { get; set; }
|
|
public string CGEFX { get; set; }
|
|
public int ScenarioType { get; set; }
|
|
public string ScenarioName { get; set; }
|
|
public System.Guid ProjectObjectId { get; set; }
|
|
public string ProjectName { get; set; }
|
|
public System.Guid ProjectTypeId { get; set; }
|
|
public System.Guid ShowStatusId { get; set; }
|
|
public string ProjectStatusName { get; set; }
|
|
public decimal Probability { get; set; }
|
|
public string ProjectColor { get; set; }
|
|
public string ScenarioColor { get; set; }
|
|
public Nullable<int> Status { get; set; }
|
|
public Nullable<System.Guid> SystemAttributeObjectID { get; set; }
|
|
}
|
|
}
|