17 lines
369 B
17 lines
369 B
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Znyc.Admin.Commons.Entitys;
|
|
|
|
namespace Znyc.Admin.Security.Entitys
|
|
{
|
|
[Table("sys_api")]
|
|
[Serializable]
|
|
public class Api : BaseEntity
|
|
{
|
|
public string ApiUrl { get; set; }
|
|
|
|
public string AuthKey { get; set; }
|
|
|
|
public string AuthValue { get; set; }
|
|
}
|
|
}
|
|
|