This commit is contained in:
2018-06-28 23:41:48 +00:00
commit 515bd37952
256 changed files with 29890 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
using System;
using System.Collections.Generic;
using AyaNova.Biz;
using System.ComponentModel.DataAnnotations;
namespace AyaNova.Models
{
/// <summary>
/// Operations job log
/// </summary>
public partial class OpsJobLog
{
[Key]
public Guid GId { get; set; }
[Required]
public Guid JobId { get; set; }
[Required]
public DateTime Created { get; set; }
[Required]
public string StatusText { get; set; }
public OpsJobLog(){
GId=new Guid();
Created=DateTime.UtcNow;
StatusText="default / not set";
}
}
}