2023-07-29 10:19:42 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Hncore.Pass.Vpn.Model
|
|
|
|
|
|
{
|
|
|
|
|
|
public class CatalogUsedModel
|
|
|
|
|
|
{
|
|
|
|
|
|
public bool Used { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public List<int> CatalogIds { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|