17 lines
400 B
C#
17 lines
400 B
C#
namespace CatherineLynwood.Models
|
|
{
|
|
public sealed class TitlePageViewModel
|
|
{
|
|
#region Public Properties
|
|
|
|
public Reviews Reviews { get; set; } = new Reviews();
|
|
|
|
public string UserIso2 { get; set; } = "GB";
|
|
|
|
public string Src { get; set; } = string.Empty;
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |