You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
633 B
35 lines
633 B
using Biblioteque_de_Class;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization.Json;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Notus_Persistance
|
|
{
|
|
internal class Stub
|
|
{
|
|
public static void SaveDatabaseData(Database database)
|
|
{
|
|
|
|
}
|
|
|
|
public static Database LoadDatabaseData()
|
|
{
|
|
|
|
}
|
|
|
|
public static void SaveUserData(User user)
|
|
{
|
|
|
|
}
|
|
|
|
public static User LoadUserData()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|
|
|