IUserRole.cs 205 B

12345678910
  1. using CZFW.Framework.Interface.Api;
  2. using CZFW.Framework.Model.Entity;
  3. namespace CZFW.Framework.Interface
  4. {
  5. public interface IUserRole:ILogicBase<UserRoleEntity>, IUserRoleApi
  6. {
  7. }
  8. }