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
+15
View File
@@ -0,0 +1,15 @@
namespace atakanozbancom.Models.classes
{
public class ProjectMediaVM
{
public int id { get; set; }
public int projectid { get; set; }
public string mediatype { get; set; } // "image" or "iframe"
public string mediaurl { get; set; }
public int sortorder { get; set; }
}
}