pr1/presence/domain/UseCase/IUserUseCase.cs

15 lines
287 B
C#
Raw Normal View History

2024-12-19 17:36:57 +00:00
using domain.Models.ResponseModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace domain.UseCase
{
public interface IUserUseCase
{
public IEnumerable<UserResponse> GetStudents();
}
}