DocSpace-client/web/ASC.Web.Api/Models/IpRestrictionsModel.cs
2019-08-15 15:04:42 +03:00

11 lines
224 B
C#

using System.Collections.Generic;
namespace ASC.Web.Api.Models
{
public class IpRestrictionsModel
{
public IEnumerable<string> Ips { get; set; }
public bool Enable { get; set; }
}
}