You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
414 B
16 lines
414 B
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Znyc.Recruitment.Admin.Commons.Dtos;
|
|
|
|
namespace Znyc.Recruitment.Admin.Security.Dtos
|
|
{
|
|
[Serializable]
|
|
public class ApiOutputDto : IOutputDto
|
|
{
|
|
[MaxLength(50)] public string ApiUrl { get; set; }
|
|
|
|
[MaxLength(15)] public string AuthKey { get; set; }
|
|
|
|
[MaxLength(155)] public string AuthValue { get; set; }
|
|
}
|
|
}
|