AcaMate_API/Program/V1/Models/AuthKey.cs

11 lines
177 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace AcaMate.V1.Models;
[Table("authkey")]
public class AuthKey
{
}