using System;
namespace StrixMusic.Helpers.TimeSpanRules
{
///
/// An interface for checking if a time matches.
///
public interface ITimeSpanRule
{
///
/// Gets if a time fits the rule.
///
/// The time to check.
/// Whether or not the time fits the rule.
public bool IsNow(DateTime now);
}
}