Skip to content

Commit

Permalink
WatchList.Core - Fixed linter.
Browse files Browse the repository at this point in the history
  • Loading branch information
Stan-Kudri committed Feb 16, 2024
1 parent f6117d4 commit 7e1924f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ namespace WatchList.Core.Model.Sortable
public interface ISortableSmartEnumOperation<T>
{
static abstract ISortableSmartEnum<T> DefaultValue { get; }

static abstract IReadOnlyCollection<ISortableSmartEnum<T>> List { get; }
}
}
2 changes: 0 additions & 2 deletions WatchList.Core/Model/Sortable/SortFieldWatchItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ public abstract class SortFieldWatchItem : SmartEnum<SortFieldWatchItem>, ISorta
public static readonly SortFieldWatchItem Grade = new SortType<int?>("Grade", 4, e => e.Grade);
public static readonly SortFieldWatchItem Type = new SortType<TypeCinema>("Type", 5, e => e.Type);

private readonly Func<IQueryable<WatchItem>, IOrderedQueryable<WatchItem>> _orderByField;

private SortFieldWatchItem(string name, int value)
: base(name, value)
{
Expand Down

0 comments on commit 7e1924f

Please sign in to comment.