using System.Collections.Generic; using UnivateProperties_API.Containers.Property; using UnivateProperties_API.Model.Property; namespace UnivateProperties_API.Repository.Properties { public interface IUserDefinedGroupRepository : IRepository { List GetFieldList(string name); List GetFieldListByPropType(string propertyType); } }