Rename public affiliate route to /support with localized nav labels, and include affiliate/social/wallpaper admin, 2FA login, and related site updates. Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
443 B
C#
17 lines
443 B
C#
using System.Collections.Generic;
|
|
|
|
namespace atakanozbancom.Models.classes
|
|
{
|
|
public class AdminMyProjectsEditVM
|
|
{
|
|
public int id { get; set; }
|
|
public string TitleTR { get; set; }
|
|
public string TitleEN { get; set; }
|
|
public string DescTR { get; set; }
|
|
public string DescEN { get; set; }
|
|
|
|
// NEW:
|
|
public List<projectmedia> medias { get; set; } = new List<projectmedia>();
|
|
}
|
|
}
|