19 lines
692 B
C#
19 lines
692 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class ScenarioDetail
|
|
{
|
|
public System.Guid Id { get; set; }
|
|
public Nullable<System.Guid> ParentID { get; set; }
|
|
public Nullable<System.Guid> ExpenditureCategoryId { get; set; }
|
|
public Nullable<System.DateTime> WeekEndingDate { get; set; }
|
|
public Nullable<decimal> Quantity { get; set; }
|
|
public Nullable<System.DateTime> LastUpdate { get; set; }
|
|
public Nullable<int> WeekOrdinal { get; set; }
|
|
public Nullable<decimal> Cost { get; set; }
|
|
public virtual ExpenditureCategory ExpenditureCategory { get; set; }
|
|
}
|
|
}
|