Files

15 lines
273 B
C#
Raw Permalink Normal View History

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