https://github.com/bugthesystem/panteon.historystorage
Panteon history storage implementations (sql server, mongodb etc)
https://github.com/bugthesystem/panteon.historystorage
Last synced: 10 days ago
JSON representation
Panteon history storage implementations (sql server, mongodb etc)
- Host: GitHub
- URL: https://github.com/bugthesystem/panteon.historystorage
- Owner: bugthesystem
- License: mit
- Created: 2016-02-12T11:53:32.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-03-21T13:01:40.000Z (over 10 years ago)
- Last Synced: 2026-06-09T13:33:44.921Z (2 months ago)
- Language: C#
- Size: 469 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Panteon.HistoryStorage
Panteon.HistoryStorage

**Simple History Storage interface**
```cs
public interface IHistoryStorage
{
bool Store(HistoryModel historyModel);
IEnumerable 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](https://raw.githubusercontent.com/PanteonProject/Panteon.HistoryStorage/master/LICENSE)).