using System.Collections.Generic; namespace UserManagement.Repository { public class PropertyMappingValue { public IEnumerable DestinationProperties { get; private set; } public bool Revert { get; private set; } public PropertyMappingValue(IEnumerable destinationProperties, bool revert = false) { DestinationProperties = destinationProperties; Revert = revert; } } }