13 lines
270 B
C#
13 lines
270 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Web;
|
|||
|
|
|
|||
|
|
namespace Face.Web.Areas.App.Models
|
|||
|
|
{
|
|||
|
|
public class ProgramViewModel
|
|||
|
|
{
|
|||
|
|
public string ProgramPath { get; set; }
|
|||
|
|
public string ProgramName { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|