AcaMate_API/Program/Common/Model/APISetting.cs

22 lines
431 B
C#

using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
namespace AcaMate.Common.Models;
[Table("api_header")]
public class APIHeader
{
[Key]
public string specific_id { get; set; }
public DateTime connect_date { get; set; }
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
*/