26 lines
548 B
C#
26 lines
548 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ModelsLib
|
|
{
|
|
public class EntityHome
|
|
{
|
|
/// <summary>
|
|
/// Nom sur haut de page
|
|
/// </summary>
|
|
public string TitlePseudo { get; set; }
|
|
|
|
public string SubTitle1 { get; set; }
|
|
public string SubTitle2 { get; set; }
|
|
|
|
public string InstaLink { get; set; }
|
|
|
|
public string InstaQrCode { get; set; }
|
|
|
|
public string Credentials { get; set; }
|
|
}
|
|
}
|