DocSpace-buildtools/web/ASC.Web.Api/Models/IpRestrictionsModel.cs

11 lines
224 B
C#
Raw Normal View History

2019-08-15 12:04:42 +00:00
using System.Collections.Generic;
2019-08-12 10:53:12 +00:00
namespace ASC.Web.Api.Models
{
public class IpRestrictionsModel
{
public IEnumerable<string> Ips { get; set; }
public bool Enable { get; set; }
}
}