19 lines
620 B
C#
19 lines
620 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Tanshu.Accounts.Contracts
|
|
{
|
|
public static class Roles
|
|
{
|
|
public const string SALES_CHECKOUT = "Sales/Checkout";
|
|
public const string SALES_SALES_BILL = "Sales/SalesBill";
|
|
public const string SECURITY_MANAGE_ROLES = "Security/ManageRoles";
|
|
public const string SALES_SALE_DETAIL = "Sales/SaleDetail";
|
|
public const string MASTER_PRODUCTS = "Master/Products";
|
|
public const string LOG_VIEW = "Log/View";
|
|
public const string MASTER_OWNER = "Master/Owner";
|
|
}
|
|
}
|