Add records for StoreLogIntervalEntry and StoreInformation with detailed summaries

This commit is contained in:
2026-02-03 07:40:08 +01:00
parent ada7f979cf
commit 0b1e735a9f
3 changed files with 28 additions and 0 deletions

View File

@@ -4,6 +4,18 @@ namespace FsToolbox.Cli.Tasks
{
public static partial class StoreTasks
{
#region Record StoreInformation
/// <summary>
/// Store information including the calendar interval for automatic slot creation.
/// </summary>
/// <param name="Id">The store identifier.</param>
/// <param name="Name">The store name.</param>
/// <param name="CalendarInterval">Interval in seconds before a slot's time when it is automatically created.</param>
public record StoreInformation(int Id, string Name, int CalendarInterval);
#endregion
#region Record Member
/// <summary>