using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace WebApiWebSem.DataAccess.Models { public partial class articles_fields { public string article_id { get; set; } public string property { get; set; } public string value { get; set; } public string type { get; set; } public virtual articles fk_articles { get; set; } } }