using System; using System.ComponentModel.DataAnnotations; namespace Sockeye.Models { /// /// Sockeye Schema version table /// public class SchemaVersion { [Required] [Key] public string Id { get; set; } public int Schema { get; set; } //ef core requires this public SchemaVersion() { } }//eoc }//eons