renis-backend/Services/Users/UserService.cs

15 lines
314 B
C#
Raw Permalink Normal View History

2024-09-07 09:45:00 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace renis_backend.Services.Users
{
public class UserService : IUserService
{
public async Task<string> GenerateUser()
{
throw new NotImplementedException();
}
}
}