mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-13 17:22:48 -05:00
11 lines
466 B
C#
11 lines
466 B
C#
using System;
|
|
|
|
namespace FeedCenter;
|
|
|
|
public class AccountReadInput(FeedCenterEntities entities, Guid? feedId, bool forceRead, Action incrementProgress)
|
|
{
|
|
public FeedCenterEntities Entities { get; set; } = entities;
|
|
public Guid? FeedId { get; set; } = feedId;
|
|
public bool ForceRead { get; set; } = forceRead;
|
|
public Action IncrementProgress { get; private set; } = incrementProgress ?? throw new ArgumentNullException(nameof(incrementProgress));
|
|
} |