RBLNews/RBLNews.Shared/Models/FilterFeedEventArg.cs

13 lines
241 B
C#

using RBLFeederCommon.Enums;
namespace RBLNews.Shared.Models;
public class FilterFeedEventArg
{
public RssFeedSources Source { get; set; }
/// <summary>
/// Value of the switch control
/// </summary>
public bool Value { get; set; }
}