demo20230512/Areas/admin/ViewModels/HomeViewModel.cs
2023-05-12 10:20:28 +08:00

15 lines
380 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Weee.Models;
namespace Weee.Areas.Admin.ViewModels
{
public class HomeViewModel
{
public List<NormalCompany> NormalCompanies { get; set; }
public List<CertificationCompany> CertificationCompanies { get; set; }
public List<LCA> Lcas { get; set; }
}
}