using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Web.Mvc; namespace atakanozbancom.Models.classes { public class myprojects { [Key] public int id { get; set; } public string image { get; set; } public string iframe { get; set; } public string title { get; set; } [AllowHtml] public string description { get; set; } public string TitleEN { get; set; } public string DescEN { get; set; } public string TitleTR { get; set; } public string DescTR { get; set; } public object admins { get; internal set; } public virtual ICollection Translations { get; set; } } }