Add project files.

This commit is contained in:
Atakan Doğan Özban
2026-02-13 23:40:52 +01:00
parent cf37f33a1e
commit 202dc16a52
199 changed files with 98481 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
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<myprojectstranslation> Translations { get; set; }
}
}