23 lines
584 B
C#
23 lines
584 B
C#
using System.Globalization;
|
|
using System.Linq;
|
|
using EnVisage.Code;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using MongoDB.Bson;
|
|
using EnVisage.Code.DAL.Mongo;
|
|
using MongoDB.Bson.Serialization;
|
|
|
|
namespace EnVisage.Models
|
|
{
|
|
/// <summary>
|
|
/// Model to return current timestamps for specified scenario list
|
|
/// </summary>
|
|
/// <remarks>SA. ENV-1085</remarks>
|
|
public class MixScenarioTimestampModel
|
|
{
|
|
public Guid ProjectId { get; set; }
|
|
public Guid ScenarioId { get; set; }
|
|
public ulong? Timestamp { get; set; }
|
|
public bool ChangeActiveScenarioId { get; set; }
|
|
}
|
|
} |