Solid SRP Cs
Solid SRP Cs
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using static System.Console;
namespace DotNetDesignPatternDemos.SOLID.SRP
{
// just stores a couple of journal entries and ways of
// working with them
public class Journal
{
private readonly List<string> entries = new List<string>();
}
}