16 lines
417 B
C#
16 lines
417 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Webzine.Entity;
|
|
|
|
namespace Webzine.Repository
|
|
{
|
|
public class InMemoryDataStore
|
|
{
|
|
public List<Artiste> Artistes { get; set; } = new();
|
|
public List<Titre> Titres { get; set; } = new();
|
|
public List<Style> Styles { get; set; } = new();
|
|
public List<Commentaire> Commentaires { get; set; } = new();
|
|
}
|
|
}
|