BuecherwurmAPI/Models/Tables.cs

12 lines
277 B
C#
Raw Normal View History

2020-06-02 09:16:45 +00:00
namespace BuecherwurmAPI.Models
{
public static class Tables
{
public struct Table
{
public const string Lends = "Lends";
2020-06-02 09:16:45 +00:00
public const string Katalog = "Katalog";
2020-06-02 12:23:21 +00:00
public const string Items = "Items";
}
}
}