using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tnb.Common.Utils { public static class ObjectPropertyChecker { public static bool HasProperty(T obj, string propertyName) { Type type = typeof(T); var propertyInfo = type.GetProperty(propertyName); return propertyInfo != null; } } }