AcaMate_API/Program/Common/Model/APISetting.cs

19 lines
344 B
C#

using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
namespace AcaMate.Common.Models;
[Table("api_header")]
public class APIHeader
{
[Key]
public string h_key { get; set; }
public string h_value { get; set; }
}
/*
h_key : h_value
iOS_AM_Connect_Key
And_AM_Connect_Key
Web_AM_Connect_Key
*/