mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 21:46:30 +00:00
7 lines
172 B
C#
7 lines
172 B
C#
namespace Azaion.Common.DTO;
|
|
|
|
public static class EnumerableExtensions
|
|
{
|
|
public static bool In<T>(this T obj, params T[] objects) =>
|
|
objects.Contains(obj);
|
|
} |