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.
 
 
 

19 lines
415 B

using System;
using System.ComponentModel.DataAnnotations;
using Znyc.Admin.Commons.Dtos;
namespace Znyc.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; }
}
}