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