Knocks/BackEnd/Knoks.Core/Logic/Interfaces/IKnokFeedsSettings.cs

14 lines
272 B
C#

using Knoks.Core.Entities;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace Knoks.Core.Logic.Interfaces
{
public interface IKnokFeedsSettings
{
int KnokFeedExpirationHours { get; set; }
}
}