Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.Interface/IUserService.cs

15 lines
296 B
C#
Raw Normal View History

2021-10-11 21:50:50 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Yi.Framework.Model.Models;
2022-04-02 17:44:50 +08:00
using Yi.Framework.Repository;
2021-10-11 21:50:50 +08:00
namespace Yi.Framework.Interface
{
2022-04-02 17:44:50 +08:00
public partial interface IUserService: IRepository<User>
2021-10-27 23:03:56 +08:00
{
2021-10-11 21:50:50 +08:00
}
}