Files
Web_AUTSDATA_Mvc_Prod/AUTS.Domain.ViewModels/User/ResultAddUserVM.cs

16 lines
360 B
C#
Raw Normal View History

2025-11-20 13:11:05 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AUTS.Domain.ViewModels.User
{
public class ResultAddUserVM
{
public List<Entities.TBL_UTS_Manage_Company> companyList { get; set; }
public List<Entities.TBL_UTS_Manage_DBList> dbList { get; set; }
}
}