public IActionResult GetById(int id)
        {
            var localizedProperty = _localizedPropertyService.Get(id);

            if (localizedProperty == null)
            {
                return(RespondFailure());
            }
            var model = localizedProperty;//.ToModel();

            return(RespondSuccess(model));
        }