DocSpace-client/web/ASC.Web.Api/Models/AuthServiceModel.cs

13 lines
266 B
C#
Raw Normal View History

2020-08-26 14:34:21 +00:00
using System.Collections.Generic;
using ASC.Web.Studio.UserControls.Management;
namespace ASC.Web.Api.Models
{
public class AuthServiceModel
{
public string Name { get; set; }
public List<AuthKey> Props { get; set; }
}
}