Files
juipnet/Services/Hncore.Pass.Vpn/Model/CatalogUsedModel.cs

15 lines
287 B
C#
Raw Normal View History

2020-10-07 20:25:03 +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; }
}
}