DocSpace-buildtools/web/ASC.Web.Api/ApiModels/RequestsDto/IpRestrictionsRequestsDto.cs

8 lines
177 B
C#
Raw Normal View History

2022-03-15 16:59:24 +00:00
namespace ASC.Web.Api.ApiModel.RequestsDto;
2022-03-01 10:58:02 +00:00
2022-03-15 10:00:41 +00:00
public class IpRestrictionsRequestsDto
2022-03-01 08:59:06 +00:00
{
2022-03-01 10:58:02 +00:00
public IEnumerable<string> Ips { get; set; }
public bool Enable { get; set; }
2022-03-01 08:59:06 +00:00
}