AuthService: added description

This commit is contained in:
pavelbannov 2020-09-03 11:43:13 +03:00
parent f5348c3ccd
commit 4fc7427aed

View File

@ -9,6 +9,7 @@ namespace ASC.Web.Api.Models
{
public string Name { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public string Instruction { get; set; }
public bool CanSet { get; set; }
public List<AuthKey> Props { get; set; }
@ -24,6 +25,7 @@ namespace ASC.Web.Api.Models
Name = authService.Name;
Title = authService.Title;
Description = authService.Description;
Instruction = authService.Instruction;
CanSet = authService.CanSet;