Files
juipnet/Services/Hncore.Pass.Vpn/Model/CatalogUsedModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

15 lines
287 B
C#

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