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; } } }