/
fr1n1ss
/
PasswordManager
Обзор
Документация
Войти
/
fr1n1ss
/
PasswordManager
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
PasswordManagerAPI/Services/INoteService.cs
13 строк
400 B
Dmitry Kiselyov
Уборка в коде
11 май 2026, 21:01
11 май 2026, 21:01
04fa056
Код
Авторство
О чём код?
using PasswordManagerAPI.Entities; namespace PasswordManagerAPI.Services { public interface INoteService { Note AddNote(int userId, string title, string encryptedContent); Task<List<Note>> GetUserNotesAsync(int userId); Task UpdateNoteAsync(int userId, int noteId, string? newTitle, string? newContent); Task DeleteNoteAsync(int userId, int noteId); } }