26 lines
591 B
C#
26 lines
591 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EgtBEAMWALL.DataLayer.DatabaseModels
|
|
{
|
|
/// <summary>
|
|
/// Tabella migrations del DB
|
|
/// </summary>
|
|
[NotMapped]
|
|
public class MigrationHistoryModel
|
|
{
|
|
#region Public Properties
|
|
|
|
public string MigrationId { get; set; } = "";
|
|
|
|
public string ProductVersion { get; set; } = "";
|
|
|
|
#endregion Public Properties
|
|
}
|
|
}
|