23 lines
400 B
C#
23 lines
400 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace AyaNova.Models
|
|
{
|
|
|
|
/// <summary>
|
|
/// AyaNova Schema version table
|
|
/// </summary>
|
|
public class SchemaVersion
|
|
{
|
|
[Required]
|
|
[Key]
|
|
public string Id { get; set; }
|
|
public int Schema { get; set; }
|
|
|
|
//ef core requires this
|
|
public SchemaVersion() { }
|
|
|
|
|
|
}//eoc
|
|
}//eons
|