using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace EnVisage.Models
{
///
/// Expenditure model for scenario details
///
/// SA. ENV-840
public class ScenarioExpenditureModel : ExpenditureModel
{
///
/// Has 1, if EC is related to scenario (via scenario teams), else 0
///
public int IsRelatedToScenario { get; set; }
}
}