Files
Web_Faces_Prod/Face.Web/Areas/App/Models/ProgramViewModel.cs
2025-11-25 17:41:57 +08:00

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; }
}
}