pr1/presence/domain/UseCase/IUserUseCase.cs
2024-12-23 12:12:26 +03:00

16 lines
299 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using domain.Models.ResponseModels;
using presence.domain.Models;
namespace domain.UseCase
{
public interface IUserUseCase
{
public IEnumerable<UserResponse> GetStudents();
}
}