forked from AcaMate/AcaMate_API
11 lines
177 B
C#
11 lines
177 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
namespace AcaMate.V1.Models;
|
|
|
|
[Table("authkey")]
|
|
public class AuthKey
|
|
{
|
|
|
|
} |