reactredux/webapi/Core/Enumerations/WebapiControllers.cs

34 lines
1.3 KiB
C#

using Core.Abstractions;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Core.Enumerations {
public class WebapiControllers : Enumeration {
public static WebapiControllers Authentication = new (0, "Authentication");
public static WebapiControllers BlogItem = new(1, "BlogItem");
public static WebapiControllers BlogItems = new(2, "BlogItems");
public static WebapiControllers CategoryItem = new(3, "CategoryItem");
public static WebapiControllers CategoryItems = new(4, "CategoryItems");
public static WebapiControllers File = new(5, "File");
public static WebapiControllers Files = new(6, "Files");
public static WebapiControllers Image = new(7, "Image");
public static WebapiControllers Password = new(8, "Password");
public static WebapiControllers ShopCartItem = new(9, "ShopCartItem");
public static WebapiControllers ShopCartItems = new(10, "ShopCartItems");
public static WebapiControllers ShopItem = new(11, "ShopItem");
public static WebapiControllers ShopItems = new(12, "ShopItems");
public static WebapiControllers Account = new(13, "Account");
public static WebapiControllers Content = new(14, "Content");
private WebapiControllers(int id, string displayName) : base(id, displayName) { }
}
}