Skip to content

Instantly share code, notes, and snippets.

@ornerymoose
Created June 5, 2018 22:09
Show Gist options
  • Save ornerymoose/e8db1f52918d9fa2dc528491499ae17f to your computer and use it in GitHub Desktop.
Save ornerymoose/e8db1f52918d9fa2dc528491499ae17f to your computer and use it in GitHub Desktop.
using Mapia.Core.Importer.Internal.Models;
using System;
using System.Collections.Generic;
namespace Mapia.Core.Models
{
public class Maintenance : BaseImportData
{
public string Id { get; set; }
public string SM_ID { get; set; }
public string Status { get; set; }
public string Severity { get; set; }
public string Ticket_Type { get; set; }
public string Maintenance_Descr { get; set; }
public string Maintenance_Detail { get; set; }
public string SM_Freq { get; set; }
public int Total_Cust_Aff { get; set; }
public int Multiregion_Flag { get; set; }
public string Affected_Regions_NM { get; set; }
public string TTS_Reg_Name { get; set; }
public string Indicator_State { get; set; }
public string Indicator_City { get; set; }
public IEnumerable<string> Elements { get; set; }
public string Resolution_Descr { get; set; }
public int Impact_In_Seconds { get; set; }
public long Create_Date { get; set; }
public DateTime Actual_Start { get; set; }
public DateTime Actual_End { get; set; }
public DateTime Timeframe_Start { get; set; }
public DateTime Timeframe_End { get; set; }
public string OR_Flag { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment