Skip to content

Panteon history storage implementations (sql server, mongodb etc)

License

Notifications You must be signed in to change notification settings

bugthesystem/Panteon.HistoryStorage

Repository files navigation

Panteon.HistoryStorage

Panteon.HistoryStorage

Simple History Storage interface

public interface IHistoryStorage
{
  bool Store(HistoryModel historyModel);
  IEnumerable<HistoryModel> Load(string name, DateTime? from = null, DateTime? to = null);
}

public class HistoryModel
{
  public int Id { get; set; }
  public string Name { get; set; }
  public string Details { get; set; }
  public DateTime DateCreated { get; set; }
}

License

Code and documentation are available according to the MIT License (see LICENSE).

About

Panteon history storage implementations (sql server, mongodb etc)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages