10 lines
159 B
C#
10 lines
159 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Logging;
|
|
|
|
public interface IDataLoader
|
|
{
|
|
List<(string, DateOnly)> LoadData(string filename);
|
|
}
|