mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-14 01:25:38 -05:00
11 lines
475 B
C#
11 lines
475 B
C#
using System;
|
|
|
|
namespace FeedCenter.Accounts;
|
|
|
|
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));
|
|
} |