You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ILuGroupsBusiness.cs 241B

12345678910
  1. using Luticate2.Auth.Dbo.Groups;
  2. using Luticate2.Utils.Interfaces;
  3. namespace Luticate2.Auth.Interfaces.Groups
  4. {
  5. public interface ILuGroupsBusiness : ILuCrudInterface<LuGroupsAddDbo, LuGroupsDbo, LuGroupsAddDbo, string>
  6. {
  7. }
  8. }