mirror of
https://github.com/chyzy/RSystem-MVC
synced 2024-12-01 17:25:27 +01:00
24 lines
478 B
C#
24 lines
478 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Web;
|
|||
|
using Microsoft.Ajax.Utilities;
|
|||
|
using RSystem.Models;
|
|||
|
|
|||
|
namespace RSystem.ViewModels
|
|||
|
{
|
|||
|
|
|||
|
public class HomeIndexViewModel
|
|||
|
{
|
|||
|
public string Greeting { get; set; }
|
|||
|
|
|||
|
public string DataStatus { get; set; }
|
|||
|
|
|||
|
public string PhotoStatus { get; set; }
|
|||
|
|
|||
|
public string EducationStatus { get; set; }
|
|||
|
|
|||
|
public string PreferenceStatus { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|